Token constructor

Token({
  1. dynamic accessToken,
  2. dynamic refreshToken,
  3. int? waitForApproval,
  4. String? qrCode,
  5. Mqtt? mqtt,
})

Implementation

Token({
  this.accessToken,
  this.refreshToken,
  this.waitForApproval,
  this.qrCode,
  this.mqtt,
});