fetch abstract method Null safety
Fetches InstanceType
s from the database.
This operation will return all InstanceType
s from the database, filtered by predicate/where. Example:
var q = Query<User>();
var allUsers = q.fetch();
Implementation
Future<List<InstanceType>> fetch();