Data constructor

Data({
  1. Config? config,
  2. bool? isExisting,
  3. bool? isProfileUpdated,
  4. String? message,
  5. bool? newLogin,
  6. String? password,
  7. String? token,
  8. String? username,
})

Implementation

Data({
  this.config,
  this.isExisting,
  this.isProfileUpdated,
  this.message,
  this.newLogin,
  this.password,
  this.token,
  this.username,
});