ExportLabelsTaskRunProperties.fromJson constructor

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

Implementation

factory ExportLabelsTaskRunProperties.fromJson(Map<String, dynamic> json) {
  return ExportLabelsTaskRunProperties(
    outputS3Path: json['OutputS3Path'] as String?,
  );
}