call method

  1. @override
GetAll call(
  1. dynamic attr, [
  2. dynamic options
])
override

Implementation

@override
GetAll call(attr, [options]) {
  if (options != null && options is Map == false) {
    attr = _listify(attr, _table);
    options = attr.add(options);
    return GetAll(attr, options);
  }
  return GetAll(_listify(attr, _table), options);
}