postWebLogin abstract method

  1. @POST('mobile/users/web-login')
Future<LoginResponse> postWebLogin(
  1. @Query('lang') String language,
  2. @Query('priority_country') String priorityCountry,
  3. @Header('client-id') String clientId,
  4. @Header('client-secret') String clientSecret,
)

Implementation

@POST('mobile/users/web-login')
Future<LoginResponse> postWebLogin(
  @Query('lang') String language,
  @Query('priority_country') String priorityCountry,
  @Header('client-id') String clientId,
  @Header('client-secret') String clientSecret,
);