If you want to remove something from code in flutter in different modes you have different constants: And then you can use it like that: if (kDebugMode) { // some code } so compiler remove this unused code in other modes.
Month: March 2023
Find missing ids in MySql
select t1.id – 1 as missing_id from messages t1 left join messages t2 on t2.id = t1.id – 1 where t2.id is null order by missing_id desc