PortalFlowsFlowSubscriptionUpdate.fromJson constructor
PortalFlowsFlowSubscriptionUpdate.fromJson(
- Object? json
Implementation
factory PortalFlowsFlowSubscriptionUpdate.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return PortalFlowsFlowSubscriptionUpdate(
subscription: (map['subscription'] as String));
}