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