getUser method

Future<Either<ApiError, User>> getUser()

Implementation

Future<Either<ApiError, User>> getUser() => get(
      "$_routePrefix/me",
      (json) => User.fromJson(json),
    );