isDBValue static method

bool isDBValue(
  1. dynamic value
)

Checks if the values of the filter are the ones supported by Frappé.

Supported types

  • null
  • String
  • int
  • double
  • List
  • List
  • List

Implementation

static bool isDBValue(dynamic value) =>
    _isDBSingleValue(value) || _isDBListValue(value);