get method
Looks up the requested value.
Implementation
Future<AuthOrganization> get({String? organizationId}) async =>
AuthOrganization.fromJson(
await _get(const AuthRoutePath('/organization/get'), {
'organizationId': _organizationId(organizationId),
}),
);