PscInterfaceConfig.fromJson constructor
Implementation
factory PscInterfaceConfig.fromJson(Map<String, dynamic> json) {
return PscInterfaceConfig(
networkAttachment: json['networkAttachment'] ?? '',
dnsPeeringConfigs:
decodeListMessage(
json['dnsPeeringConfigs'],
DnsPeeringConfig.fromJson,
) ??
[],
);
}