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