copyWith method

Value copyWith({
  1. BigInt? coin,
  2. MultiAsset? multiAsset,
})

Implementation

Value copyWith({
  BigInt? coin,
  MultiAsset? multiAsset,
}) {
  return Value(
      coin: coin ?? this.coin, multiAsset: multiAsset ?? this.multiAsset);
}