Sample.fromJson constructor
Implementation
factory Sample.fromJson(Map<String, dynamic> json) => Sample(
sampleId: json["sample_id"],
fileName: json["file_name"],
mimeType: json["mime_type"],
sizeBytes: json["size_bytes"],
hash: json["hash"],
);