NumberInfoItemModel constructor

NumberInfoItemModel({
  1. String? number,
  2. String? title,
  3. BrnNumberInfoIcon numberInfoIcon = BrnNumberInfoIcon.question,
  4. dynamic iconTapCallBack(
    1. NumberInfoItemModel
    )?,
  5. String? preDesc,
  6. String? lastDesc,
  7. Widget? bottomWidget,
  8. Widget? topWidget,
})

上部分的:(number、preDesc、lastDesc)和topWidget 必须设置一个 下部分的:title和title 必须设置一个

Implementation

NumberInfoItemModel({
  this.number,
  this.title,
  this.numberInfoIcon = BrnNumberInfoIcon.question,
  this.iconTapCallBack,
  this.preDesc,
  this.lastDesc,
  this.bottomWidget,
  this.topWidget,
});