copyWith method

FwStandardGridsAppDocumentAppDocumentGetManyResponse copyWith({
  1. String? documentId,
  2. String? documentTypeId,
  3. String? documentType,
  4. String? description,
  5. bool? hasImages,
  6. bool? hasFile,
  7. bool? inactive,
  8. String? dateStamp,
})

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,
  );
}