RegisterModel constructor Null safety

RegisterModel(
  1. {String? password,
  2. bool? conditionAgreement,
  3. String? mobileType,
  4. bool? isSubscribed,
  5. String? deviceId,
  6. int? id,
  7. String? firstName,
  8. String? lastName,
  9. String? mobile,
  10. String? email,
  11. bool? isActive,
  12. int? zoneId,
  13. int? gender}
)

Implementation

RegisterModel({
  this.password,
  this.conditionAgreement,
  this.mobileType,
  this.isSubscribed,
  this.deviceId,
  this.id,
  this.firstName,
  this.lastName,
  this.mobile,
  this.email,
  this.isActive,
  this.zoneId,
  this.gender,
});