AuthTokens constructor

const AuthTokens({
  1. required String token,
  2. required String refreshToken,
  3. required String deviceId,
  4. String? reportingToken,
  5. LoginConfig? config,
  6. LoginResponse? loginResponse,
})

Implementation

const AuthTokens({
  required this.token,
  required this.refreshToken,
  required this.deviceId,
  this.reportingToken,
  this.config,
  this.loginResponse,
});