copyWith method

LoginParameterModel copyWith({
  1. String? wormUserId,
  2. String? pin,
})

Implementation

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