MistyViewModel constructor

MistyViewModel({
  1. required String url,
  2. bool showBar = false,
  3. bool showTitle = false,
  4. String? title,
  5. bool showMoreBtn = true,
  6. Function? moreFunc,
  7. Function? closeFunc,
  8. Widget? bottomNav,
  9. int? milliseconds,
})

Implementation

MistyViewModel({
  required this.url,
  this.showBar = false,
  this.showTitle = false,
  this.title,
  this.showMoreBtn = true,
  this.moreFunc,
  this.closeFunc,
  this.bottomNav,
  this.logo,
  this.milliseconds,
});