Contact: aviboots(AT)netvision.net.il
40,758 questions
53,129 answers
573 users
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 */