copyWith method
Implementation
LoginParameterModel copyWith({
String? wormUserId,
String? pin,
}) {
return LoginParameterModel(
wormUserId: wormUserId ?? this.wormUserId,
pin: pin ?? this.pin,
);
}
LoginParameterModel copyWith({
String? wormUserId,
String? pin,
}) {
return LoginParameterModel(
wormUserId: wormUserId ?? this.wormUserId,
pin: pin ?? this.pin,
);
}