toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (boolMatch != null) 'boolMatch': boolMatch!,
      if (doubleMatch != null) 'doubleMatch': doubleMatch!,
      if (listMatch != null) 'listMatch': listMatch!,
      if (nullMatch != null) 'nullMatch': nullMatch!,
      if (orMatch != null) 'orMatch': orMatch!,
      if (presentMatch != null) 'presentMatch': presentMatch!,
      if (stringMatch != null) 'stringMatch': stringMatch!,
    };