ThirdPartySessionModel constructor

const ThirdPartySessionModel({
  1. int id = -1,
  2. String? mail = "",
  3. String? display = "",
  4. String? pic = "",
  5. String token = "",
  6. bool mailValidationDone = false,
})

Implementation

const ThirdPartySessionModel({
  this.id = -1,
  this.mail = "",
  this.display = "",
  this.pic = "",
  this.token = "",
  this.mailValidationDone = false
}) : super();