BannerData constructor

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

Implementation

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