copyWith method
Implementation
BannerData copyWith({ num? id,
String? projectId,
String? titleDisplay,
String? title,
String? imageWebType,
String? imageMobileType,
String? imageWeb,
String? imageWebFull,
}) => 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,
);