toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (displayName != null) 'displayName': displayName!,
  if (name != null) 'name': name!,
  if (packetMirroringRules != null)
    'packetMirroringRules': packetMirroringRules!,
  if (priority != null) 'priority': priority!,
  if (rules != null) 'rules': rules!,
  if (shortName != null) 'shortName': shortName!,
  if (type != null) 'type': type!,
};