Closed
Description
PostgrestQueryBuilder is generic while it's descendant SupabaseQueryBuilder is not.
As a consequence the only available result type is dynamic
while actually under the hood it's predominately List<Map<dynamic>>
or even List<Map<String,dynamic>>
which could be determined while debugging (though I have no idea what _JsonMap is).
Could it be implemented as generic? Moreover there is postgrest-dart 0.2 where PostgrestQueryBuilder is a descendant of Future (which is also generic).