toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowed = this.allowed;
  final creationTimestamp = this.creationTimestamp;
  final denied = this.denied;
  final description = this.description;
  final destinationRanges = this.destinationRanges;
  final direction = this.direction;
  final disabled = this.disabled;
  final id = this.id;
  final kind = this.kind;
  final logConfig = this.logConfig;
  final name = this.name;
  final network = this.network;
  final params = this.params;
  final priority = this.priority;
  final selfLink = this.selfLink;
  final sourceRanges = this.sourceRanges;
  final sourceServiceAccounts = this.sourceServiceAccounts;
  final sourceTags = this.sourceTags;
  final targetServiceAccounts = this.targetServiceAccounts;
  final targetTags = this.targetTags;
  return {
    'allowed': ?allowed,
    'creationTimestamp': ?creationTimestamp,
    'denied': ?denied,
    'description': ?description,
    'destinationRanges': ?destinationRanges,
    'direction': ?direction,
    'disabled': ?disabled,
    'id': ?id,
    'kind': ?kind,
    'logConfig': ?logConfig,
    'name': ?name,
    'network': ?network,
    'params': ?params,
    'priority': ?priority,
    'selfLink': ?selfLink,
    'sourceRanges': ?sourceRanges,
    'sourceServiceAccounts': ?sourceServiceAccounts,
    'sourceTags': ?sourceTags,
    'targetServiceAccounts': ?targetServiceAccounts,
    'targetTags': ?targetTags,
  };
}