extractSupabaseList<T extends SupabaseObject> static method
Implementation
static List<T> extractSupabaseList<T extends SupabaseObject>(PostgrestResponse response) {
catchPostgrestError(response);
return List<T>.from(
List<Map<String, dynamic>>.from(response.data as List).map((json) => SupabaseObjectFunctions.fromJson<T>(json)),
);
}