Data constructor

Data({
  1. int? isTried,
  2. int? isSent,
  3. List<Results>? results,
  4. String? tokenType,
  5. String? token,
  6. int? expiresIn,
  7. User? user,
})

Implementation

Data({
  this.isTried,
  this.isSent,
  this.results,
  this.tokenType,
  this.token,
  this.expiresIn,
  this.user,
});