Files.fromJson constructor

Files.fromJson(
  1. dynamic json
)

Implementation

Files.fromJson(dynamic json) {
  _file = json['file'];
  _title = json['title'];
}