copyWithWrapped method
Implementation
FwStandardGridsAppDocumentDocumentImage copyWithWrapped({
Wrapped<String?>? imageId,
Wrapped<String?>? description,
Wrapped<String?>? imageNumber,
Wrapped<String?>? dataUrl,
}) {
return FwStandardGridsAppDocumentDocumentImage(
imageId: (imageId != null ? imageId.value : this.imageId),
description: (description != null ? description.value : this.description),
imageNumber: (imageNumber != null ? imageNumber.value : this.imageNumber),
dataUrl: (dataUrl != null ? dataUrl.value : this.dataUrl),
);
}