ActionSheetModel constructor

ActionSheetModel({
  1. required String text,
  2. double cellHeight = 55,
  3. TextStyle textStyle = const TextStyle(color: LiveColors.designStandardFlowkitWhite, fontSize: 16, fontWeight: FontWeight.w700),
  4. bool isShowBottomLine = true,
  5. Color lineColor = LiveColors.designStandardG3Divider,
  6. double lineHeight = 1,
  7. String icon = "",
  8. bool isCenter = true,
  9. dynamic bingData = "",
  10. bool autoPopSheet = true,
})

Implementation

ActionSheetModel(
    {required this.text,
    this.cellHeight = 55,
    this.textStyle = const TextStyle(
      color: LiveColors.designStandardFlowkitWhite,
      fontSize: 16,
      fontWeight: FontWeight.w700,
    ),
    this.isShowBottomLine = true,
    this.lineColor = LiveColors.designStandardG3Divider,
    this.lineHeight = 1,
    this.icon = "",
    this.isCenter = true,
    this.bingData = "",
    this.autoPopSheet = true});