copyWith method

AssetOwner copyWith({
  1. String? assetOwnerText,
})

Implementation

AssetOwner copyWith({String? assetOwnerText}) {
  return AssetOwner(assetOwnerText: assetOwnerText ?? this.assetOwnerText);
}