toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accessConfigs = this.accessConfigs;
  final aliasIpRanges = this.aliasIpRanges;
  final internalIpv6PrefixLength = this.internalIpv6PrefixLength;
  final ipv6AccessConfigs = this.ipv6AccessConfigs;
  final ipv6AccessType = this.ipv6AccessType;
  final ipv6Address = this.ipv6Address;
  final name = this.name;
  final network = this.network;
  final networkAttachment = this.networkAttachment;
  final networkIP = this.networkIP;
  final nicType = this.nicType;
  final queueCount = this.queueCount;
  final stackType = this.stackType;
  final subnetwork = this.subnetwork;
  return {
    'accessConfigs': ?accessConfigs,
    'aliasIpRanges': ?aliasIpRanges,
    'internalIpv6PrefixLength': ?internalIpv6PrefixLength,
    'ipv6AccessConfigs': ?ipv6AccessConfigs,
    'ipv6AccessType': ?ipv6AccessType,
    'ipv6Address': ?ipv6Address,
    'name': ?name,
    'network': ?network,
    'networkAttachment': ?networkAttachment,
    'networkIP': ?networkIP,
    'nicType': ?nicType,
    'queueCount': ?queueCount,
    'stackType': ?stackType,
    'subnetwork': ?subnetwork,
  };
}