toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (creationTimestamp != null) 'creationTimestamp': creationTimestamp!,
      if (customFeatures != null) 'customFeatures': customFeatures!,
      if (description != null) 'description': description!,
      if (enabledFeatures != null) 'enabledFeatures': enabledFeatures!,
      if (fingerprint != null) 'fingerprint': fingerprint!,
      if (id != null) 'id': id!,
      if (kind != null) 'kind': kind!,
      if (minTlsVersion != null) 'minTlsVersion': minTlsVersion!,
      if (name != null) 'name': name!,
      if (profile != null) 'profile': profile!,
      if (region != null) 'region': region!,
      if (selfLink != null) 'selfLink': selfLink!,
      if (warnings != null) 'warnings': warnings!,
    };