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