TopActionItem constructor

const TopActionItem({
  1. required String title,
  2. String? desc,
  3. TextStyle? titleTextStyle,
  4. TextStyle? descTextStyle,
  5. bool showBottomLine = true,
  6. VoidCallback? cancelAction,
  7. ValueChanged<List<int>?>? doneAction,
})

Implementation

const TopActionItem(
    {required String title,
    this.desc,
    TextStyle? titleTextStyle,
    this.descTextStyle,
    this.showBottomLine = true,
    this.cancelAction,
    this.doneAction})
    : super(title: title, titleTextStyle: titleTextStyle);