list method

Lists the requested value.

Implementation

Future<List<AuthOrganization>> list() async => _list(
  (await _get(const AuthRoutePath('/organization/list')))['organizations'],
  AuthOrganization.fromJson,
);