toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final key = this.key;
  final matchOptions = this.matchOptions;
  final values = this.values;
  return {
    if (key != null) 'Key': key,
    if (matchOptions != null)
      'MatchOptions': matchOptions.map((e) => e.toValue()).toList(),
    if (values != null) 'Values': values,
  };
}