fromMap static method
Creates a list of GoogleCastAndroidDevice from a list of maps.
Implementation
static List<GoogleCastAndroidDevice> fromMap(List maps) {
final devices =
maps.map((e) => GoogleCastAndroidDevice.fromMap(e)).toList();
return devices;
}