loginWithCode abstract method

Future<AuthTokens> loginWithCode(
  1. String code, {
  2. required String deviceId,
})

Login with feedback code and return tokens

code - The feedback code from device feedback API deviceId - The device ID used for the feedback API call

Implementation

Future<AuthTokens> loginWithCode(String code, {required String deviceId});