copyWith method
FwStandardModelsFwAppImageModel
copyWith(
{ - String? appImageId,
- String? dateStamp,
- String? description,
- String? extension,
- String? mimeType,
- int? width,
- int? height,
- String? recType,
- String? fileDownloadName,
- int? orderBy,
- 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);
}