copyWith method

AssetHolderName copyWith({
  1. String? fullName,
})

Implementation

AssetHolderName copyWith({String? fullName}) {
  return AssetHolderName(fullName: fullName ?? this.fullName);
}