AuthCodeMap constructor

AuthCodeMap({
  1. String? deviceCode,
  2. String? userCode,
  3. int? expiresIn,
  4. int? interval,
  5. String? verificationUrl,
})

Create new AuthCodeMap.

Implementation

AuthCodeMap({
  this.deviceCode,
  this.userCode,
  this.expiresIn,
  this.interval,
  this.verificationUrl,
});