var stars = new Map<String,Map<String,String>>();
Map<String,String> xx = {
'test' : 'test'
};
stars.putIfAbsent('String', xx);
im getting this error the argument type Map<String,String> cant be assigned to the parameter type Map<String,String>Function(),
i don't know what's this Function() at the end of the map, i know this maybe a stupid question but i really dont know where to read about it because i found nothing helpful at official dart docs . thanks in advance