toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'id'] = this.id;
json[r'name'] = this.name;
json[r'file'] = this.file;
json[r'created'] = this.created.toUtc().toIso8601String();
return json;
}