AndroidWidget constructor

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

Implementation

AndroidWidget(
    {key, this.maskClosable=true, this.close, this.onChange,required this.children})
    : super(key: key);