fromValue static method

FilterParams fromValue(
  1. dynamic value
)
override

Converts specified value into FilterParams.

  • value value to be converted Returns a newly created FilterParams.

Implementation

static FilterParams fromValue(value) {
  return FilterParams(value);
}