SocialLoginUserModel constructor Null safety

SocialLoginUserModel(
  1. {String? firstName,
  2. String? lastName,
  3. String? email,
  4. String? mobile,
  5. String? imageUrl,
  6. dynamic socialType,
  7. String? socialCode,
  8. int? id,
  9. String? deviceId,
  10. String? appleId}
)

Implementation

SocialLoginUserModel({
  this.firstName,
  this.lastName,
  this.email,
  this.mobile,
  this.imageUrl,
  this.socialType,
  this.socialCode,
  this.id,
  this.deviceId,
  this.appleId,
});