copyWith method

MintAssets copyWith({
  1. Map<AssetName, BigInt>? assets,
})

Implementation

MintAssets copyWith({Map<AssetName, BigInt>? assets}) {
  return MintAssets(assets ?? this.assets);
}