me abstract method

  1. @GET('/me')
Future<Account> me(
  1. @Header('Authorization') String token
)

Gets an account while being authenticated

Implementation

@GET('/me')
Future<Account> me(
  @Header('Authorization') String token,
);