NetworkResourceConfig.fromJson constructor
NetworkResourceConfig.fromJson(
- Map json_
Implementation
NetworkResourceConfig.fromJson(core.Map json_)
: this(
existingNetwork: json_.containsKey('existingNetwork')
? ExistingNetworkConfig.fromJson(
json_['existingNetwork'] as core.Map<core.String, core.dynamic>,
)
: null,
newNetwork: json_.containsKey('newNetwork')
? NewNetworkConfig.fromJson(
json_['newNetwork'] as core.Map<core.String, core.dynamic>,
)
: null,
);