ActionSheetOption constructor

const ActionSheetOption({
  1. required String title,
  2. dynamic value,
  3. bool isDestructive = false,
  4. bool isDefault = false,
})

构造函数

Implementation

const ActionSheetOption({
  required this.title,
  this.value,
  this.isDestructive = false,
  this.isDefault = false,
});