GroundTruthManifest.fromJson constructor

GroundTruthManifest.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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