copyWith method

BannerData copyWith({
  1. num? id,
  2. String? projectId,
  3. String? titleDisplay,
  4. String? title,
  5. String? imageWebType,
  6. String? imageMobileType,
  7. String? imageWeb,
  8. String? imageWebFull,
})

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