may i ask how to check if the map of String,String has in it's keys a specific String then i want to get the value that belong this specific key that contains the target String. for example this Map
Map<String, String> ListFinalAllInfos = {'stackoverflow': 'one', 'google': 'two'};
and i want to check if this map has this String in it's keys
stackoverflow
if stackoverflow exists as a key inside the map then i want to get the value which is
one
without converting the map to a list, if this possible. thanks in advance