copy method
Implementation
ApplyAuthFormModel copy({
String? phoneNumber,
bool? isPrivacyAgreed,
bool? isThirdPrivacyAgreed,
bool? isServiceAgreed,
bool? isLocationServiceAgreed,
bool? enabled,
bool? pending,
}) {
return ApplyAuthFormModel(
phoneNumber: phoneNumber ?? this.phoneNumber,
isPrivacyAgreed: isPrivacyAgreed ?? this.isPrivacyAgreed,
isThirdPrivacyAgreed: isThirdPrivacyAgreed ?? this.isThirdPrivacyAgreed,
isServiceAgreed: isServiceAgreed ?? this.isServiceAgreed,
isLocationServiceAgreed:
isLocationServiceAgreed ?? this.isLocationServiceAgreed,
enabled: enabled ?? this.enabled,
pending: pending ?? this.pending,
);
}