InterconnectGroupConfigured.fromJson constructor

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