me method

Future<Admin> me()

Implementation

Future<Admin> me() async {
  return client.get('/me', decoder: Admin.fromJson);
}