InterconnectGroupConfigured.fromJson constructor
InterconnectGroupConfigured.fromJson(
- Object? j
Implementation
factory InterconnectGroupConfigured.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return InterconnectGroupConfigured(
topologyCapability: switch (json['topologyCapability']) {
null => null,
Object $1 => InterconnectGroupConfiguredTopologyCapability.fromJson($1),
},
);
}