FileEntity.fromJson constructor

FileEntity.fromJson(
  1. dynamic json
)

Implementation

FileEntity.fromJson(dynamic json): this(
  name: json['name']!,
  lastUpdated: json['updated']!,
  size: json['size']!,
  type: of(json['type']!),
  path: json['path'],
);