getValuesWhere method

  1. @override
Future<List<T>> getValuesWhere(
  1. bool condition(
    1. T item
    )
)

Returns the values for the given condition.

Implementation

@override
Future<List<T>> getValuesWhere(bool Function(T value) condition) =>
    _executeRead(() => _nativeBox.getValuesWhere(condition));