Data constructor

Data({
  1. String? token,
  2. String? username,
  3. String? password,
  4. bool? isExisting,
  5. bool? isProfileUpdated,
  6. RegConfig? config,
})

Implementation

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