ConnectEmbeddedBaseConfigClaim.fromJson constructor

ConnectEmbeddedBaseConfigClaim.fromJson(
  1. 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']),
  );
}