Data constructor

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

Initializes a new instance of the Data class.

Implementation

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