How to check if map is not empty in Dart

1 Answer

0 votes
void main() {
    var mp = {'dart': 13, 'c': 89, 'c++': 10, 'python': 45};
    
    if (mp.isNotEmpty ) {
        print('Map is not empty');
    } else {
        print('Map is empty');
    }
}
 
 
 
 
 
/*
run:
 
Map is not empty
 
*/

 



answered Oct 11, 2022 by avibootz

Related questions

1 answer 151 views
151 views asked Oct 11, 2022 by avibootz
1 answer 150 views
150 views asked Oct 12, 2022 by avibootz
2 answers 186 views
186 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
1 answer 185 views
...