Returns the longest String in list
list
String getLongest(List<String> list) => list.reduce((String a, String b) => a.length > b.length ? a : b);