copyWith method

ToOtherPot copyWith({
  1. BigInt? value,
})

Implementation

ToOtherPot copyWith({BigInt? value}) {
  return ToOtherPot(value ?? this.value);
}