How to check if map is empty in Dart

1 Answer

0 votes
void main() {
    var mp = {};
    
    if (mp.isEmpty) {
        print('Map is empty');
    } else {
        print('Map is not empty');
    }
}
 
 
 
 
 
/*
run:
 
Map is empty
 
*/

 



answered Oct 11, 2022 by avibootz

Related questions

1 answer 163 views
163 views asked Oct 11, 2022 by avibootz
1 answer 150 views
150 views asked Oct 12, 2022 by avibootz
2 answers 187 views
187 views asked Oct 10, 2022 by avibootz
1 answer 191 views
191 views asked Oct 9, 2022 by avibootz
1 answer 178 views
1 answer 154 views
...