BatchSuccessfulResultModel.fromJson constructor
Implementation
factory BatchSuccessfulResultModel.fromJson(Map<String, dynamic> json) {
return BatchSuccessfulResultModel(
arn: json['arn'] as String?,
id: json['id'] as String?,
state: json['state'] as String?,
);
}