listFromJson static method
Converts a list of JSON objects to a list of DiscUsage instances.
@param json The list of JSON objects to convert. @return A list of DiscUsage instances.
Implementation
static List<DiscUsage> listFromJson(List<dynamic> json) {
return json.map((value) => DiscUsage.fromJson(value)).toList();
}