File.fromJson constructor

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

Implementation

File.fromJson(Map<String, dynamic> json) {
  name = json['name'];
  file = json['file'];
}