hey I have like that List
List<String> list = ['a', 'b', 'c'];
and ı have like that map
Map<String, String> map = {'Hello': 'a', 'How': 'b', 'You': 'c'};
I want make function like that if is a i want return Hello how can i do it can you help me ?
find(a) {
//return Hello
}