copyWith method
Implementation
AuthModule copyWith({
PhoneNumberModule? phone,
String? password,
}) {
return AuthModule(
phone: phone ?? this.phone,
password: password ?? this.password,
);
}
AuthModule copyWith({
PhoneNumberModule? phone,
String? password,
}) {
return AuthModule(
phone: phone ?? this.phone,
password: password ?? this.password,
);
}