Data constructor

Data({
  1. String? accessToken,
  2. int? expiresIn,
  3. String? tokenType,
  4. dynamic scope,
})

Implementation

Data({
  this.accessToken,
  this.expiresIn,
  this.tokenType,
  this.scope,
});