toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowed = this.allowed;
  final denied = this.denied;
  final destinationIpRanges = this.destinationIpRanges;
  final direction = this.direction;
  final exposedServices = this.exposedServices;
  final sourceIpRanges = this.sourceIpRanges;
  return {
    'allowed': ?allowed,
    'denied': ?denied,
    'destinationIpRanges': ?destinationIpRanges,
    'direction': ?direction,
    'exposedServices': ?exposedServices,
    'sourceIpRanges': ?sourceIpRanges,
  };
}