IosWidget constructor

IosWidget({
  1. Key? key,
  2. dynamic title,
  3. bool maskClosable = true,
  4. dynamic cancelButton,
  5. dynamic close()?,
  6. dynamic onChange(
    1. int index
    )?,
  7. required List<WeActionSheetItem> children,
})

Implementation

IosWidget(
    {Key? key,
    this.title,
    this.maskClosable = true,
    this.cancelButton,
    this.close,
    this.onChange,
    required this.children})
    : super(key: key);