toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final name = this.name;
  final packetMirroringRules = this.packetMirroringRules;
  final priority = this.priority;
  final rules = this.rules;
  final shortName = this.shortName;
  final type = this.type;
  return {
    'displayName': ?displayName,
    'name': ?name,
    'packetMirroringRules': ?packetMirroringRules,
    'priority': ?priority,
    'rules': ?rules,
    'shortName': ?shortName,
    'type': ?type,
  };
}