ActionSheetItem constructor

ActionSheetItem({
  1. String? name,
  2. String? subname,
  3. Color color = Colors.black,
  4. bool loading = false,
  5. bool disabled = false,
})

Implementation

ActionSheetItem(
    {this.name,
    this.subname,
    this.color: Colors.black,
    this.loading: false,
    this.disabled: false});