getOrganization method
- String orgId
Implementation
Future<OrganizationModel> getOrganization(String orgId) async {
final response = await _client
.from('organizations')
.select()
.eq('id', orgId)
.single();
return OrganizationModel.fromJson(response);
}