ActivationCodeModel constructor Null safety

ActivationCodeModel(
  1. {int? id,
  2. String? activationCode,
  3. String? email,
  4. String? mobile,
  5. int? zoneId}
)

Implementation

ActivationCodeModel({
  this.id,
  this.activationCode,
  this.email,
  this.mobile,
  this.zoneId,
});