copyWith method

FwStandardModelsFwAppImageModel copyWith({
  1. String? appImageId,
  2. String? dateStamp,
  3. String? description,
  4. String? extension,
  5. String? mimeType,
  6. int? width,
  7. int? height,
  8. String? recType,
  9. String? fileDownloadName,
  10. int? orderBy,
  11. String? image,
})

Implementation

FwStandardModelsFwAppImageModel copyWith(
    {String? appImageId,
    String? dateStamp,
    String? description,
    String? extension,
    String? mimeType,
    int? width,
    int? height,
    String? recType,
    String? fileDownloadName,
    int? orderBy,
    String? image}) {
  return FwStandardModelsFwAppImageModel(
      appImageId: appImageId ?? this.appImageId,
      dateStamp: dateStamp ?? this.dateStamp,
      description: description ?? this.description,
      extension: extension ?? this.extension,
      mimeType: mimeType ?? this.mimeType,
      width: width ?? this.width,
      height: height ?? this.height,
      recType: recType ?? this.recType,
      fileDownloadName: fileDownloadName ?? this.fileDownloadName,
      orderBy: orderBy ?? this.orderBy,
      image: image ?? this.image);
}