LabelingJobS3DataSource.fromJson constructor

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

Implementation

factory LabelingJobS3DataSource.fromJson(Map<String, dynamic> json) {
  return LabelingJobS3DataSource(
    manifestS3Uri: json['ManifestS3Uri'] as String,
  );
}