requestToken abstract method

  1. @POST.new('')
Future<ResponseAuthToken> requestToken(
  1. @Body.new() RequestAuthToken authentication
)

Implementation

@POST('')
Future<ResponseAuthToken> requestToken(
  @Body() RequestAuthToken authentication,
);