toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final eq = this.eq;
  final gte = this.gte;
  final lte = this.lte;
  return {
    if (eq != null) 'Eq': eq,
    if (gte != null) 'Gte': gte,
    if (lte != null) 'Lte': lte,
  };
}