copyWith method

AssetName copyWith({
  1. List<int>? data,
})

Implementation

AssetName copyWith({List<int>? data}) {
  return AssetName(data ?? this.data);
}