DeleteFlowResponse.fromJson constructor
Implementation
factory DeleteFlowResponse.fromJson(Map<String, dynamic> json) {
return DeleteFlowResponse(
flowArn: json['flowArn'] as String?,
status: (json['status'] as String?)?.toStatus(),
);
}