listFromJson static method
Creates a list of DestinationRule from JSON data.
Implementation
static List<DestinationRule> listFromJson(
Iterable<Map<String, dynamic>> list) {
return list.map((e) => DestinationRule.fromJson(e)).toList();
}
Creates a list of DestinationRule from JSON data.
static List<DestinationRule> listFromJson(
Iterable<Map<String, dynamic>> list) {
return list.map((e) => DestinationRule.fromJson(e)).toList();
}