GroundTruthManifest.fromJson constructor
Implementation
factory GroundTruthManifest.fromJson(Map<String, dynamic> json) {
return GroundTruthManifest(
s3Object: json['S3Object'] != null
? S3Object.fromJson(json['S3Object'] as Map<String, dynamic>)
: null,
);
}