VpcNetwork.fromJson constructor
VpcNetwork.fromJson(
- Map json_
Implementation
VpcNetwork.fromJson(core.Map json_)
: this(
network: json_.containsKey('network')
? json_['network'] as core.String
: null,
type: json_.containsKey('type') ? json_['type'] as core.String : null,
);