IosWidget constructor
IosWidget({
- Key? key,
- dynamic title,
- bool maskClosable = true,
- dynamic cancelButton,
- dynamic close()?,
- dynamic onChange(
- int index
- 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);