getAll<T extends SupabaseObject> static method
Implementation
static Future<List<T>> getAll<T extends SupabaseObject>({List<String> selectedColumns = const ['*']}) async =>
extractSupabaseList(await env.client.from(tableName(T)).select(selectedColumns.join(',')).execute());