copyWith method
Implementation
FwStandardGridsAppDocumentAppDocumentGetManyResponse copyWith({
String? documentId,
String? documentTypeId,
String? documentType,
String? description,
bool? hasImages,
bool? hasFile,
bool? inactive,
String? dateStamp,
}) {
return FwStandardGridsAppDocumentAppDocumentGetManyResponse(
documentId: documentId ?? this.documentId,
documentTypeId: documentTypeId ?? this.documentTypeId,
documentType: documentType ?? this.documentType,
description: description ?? this.description,
hasImages: hasImages ?? this.hasImages,
hasFile: hasFile ?? this.hasFile,
inactive: inactive ?? this.inactive,
dateStamp: dateStamp ?? this.dateStamp,
);
}