copyWith method

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

Implementation

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