get method

Future<Admin> get(
  1. AdminId id
)

Implementation

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