User constructor

User({
  1. String? userID,
  2. String? name,
  3. String? cpf,
  4. String? email,
  5. String? gender,
  6. String? birthday,
  7. String? location,
  8. Map<String, dynamic>? customData,
})

Implementation

User(
    {this.userID,
    this.name,
    this.cpf,
    this.email,
    this.gender,
    this.birthday,
    this.location,
    this.customData});