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