ImportLabelsTaskRunProperties.fromJson constructor

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

Implementation

factory ImportLabelsTaskRunProperties.fromJson(Map<String, dynamic> json) {
  return ImportLabelsTaskRunProperties(
    inputS3Path: json['InputS3Path'] as String?,
    replace: json['Replace'] as bool?,
  );
}