ActionSheetModel constructor
ActionSheetModel({
- required String text,
- double cellHeight = 55,
- TextStyle textStyle = const TextStyle(color: LiveColors.designStandardFlowkitWhite, fontSize: 16, fontWeight: FontWeight.w700),
- bool isShowBottomLine = true,
- Color lineColor = LiveColors.designStandardG3Divider,
- double lineHeight = 1,
- String icon = "",
- bool isCenter = true,
- dynamic bingData = "",
- 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});