ProfileInput constructor

ProfileInput({
  1. String? firstName,
  2. String? lastName,
  3. String? gender,
  4. String? birthday,
  5. String? address,
  6. String? locale,
  7. dynamic extension,
})

Implementation

ProfileInput(
    {this.firstName,
    this.lastName,
    this.gender,
    this.birthday,
    this.address,
    this.locale,
    this.extension});