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