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