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

Implementation

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