copyWith method
BannerData
copyWith(
{ - num? id,
- String? projectId,
- String? titleDisplay,
- String? title,
- String? imageWebType,
- String? imageMobileType,
- String? imageWeb,
- String? imageWebFull,
- String? imageMobile,
- String? imageMobileFull,
})
Implementation
BannerData copyWith({ num? id,
String? projectId,
String? titleDisplay,
String? title,
String? imageWebType,
String? imageMobileType,
String? imageWeb,
String? imageWebFull,
String? imageMobile,
String? imageMobileFull,
}) => BannerData( id: id ?? _id,
projectId: projectId ?? _projectId,
titleDisplay: titleDisplay ?? _titleDisplay,
title: title ?? _title,
imageWebType: imageWebType ?? _imageWebType,
imageMobileType: imageMobileType ?? _imageMobileType,
imageWeb: imageWeb ?? _imageWeb,
imageWebFull: imageWebFull ?? _imageWebFull,
imageMobile: imageMobile ?? _imageMobile,
imageMobileFull: imageMobileFull ?? _imageMobileFull,
);