FilterParams.fromJson constructor

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

Creates a new instance and initalizes it with elements from the specified map.

  • json json values to initialize this object.

Implementation

factory FilterParams.fromJson(Map<String, dynamic> json) {
  return FilterParams(json);
}