UserEntity constructor

UserEntity({
  1. int? id,
  2. String? username,
  3. String? email,
  4. String? provider,
  5. bool? confirmed,
  6. bool? blocked,
  7. String? createdAt,
  8. String? updatedAt,
})

Implementation

UserEntity(
    {this.id,
    this.username,
    this.email,
    this.provider,
    this.confirmed,
    this.blocked,
    this.createdAt,
    this.updatedAt});