RevokeFlowEntitlementResponse.fromJson constructor

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

Implementation

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