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