UpdateFlowEntitlementResponse.fromJson constructor

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

Implementation

factory UpdateFlowEntitlementResponse.fromJson(Map<String, dynamic> json) {
  return UpdateFlowEntitlementResponse(
    entitlement: json['entitlement'] != null
        ? Entitlement.fromJson(json['entitlement'] as Map<String, dynamic>)
        : null,
    flowArn: json['flowArn'] as String?,
  );
}