ActionSheetModel constructor

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

Implementation

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