NumberFilter.fromJson constructor

NumberFilter.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory NumberFilter.fromJson(Map<String, dynamic> json) {
  return NumberFilter(
    eq: json['Eq'] as double?,
    gte: json['Gte'] as double?,
    lte: json['Lte'] as double?,
  );
}