FileVersions.fromJson constructor

FileVersions.fromJson(
  1. Map<String, dynamic> json
)

Creates a FileVersions instance from a JSON representation.

Implementation

FileVersions.fromJson(Map<String, dynamic> json) {
  value = FileVersion.listFromJson(json['value']);
}