convertToCupertinoDialogActions method

List<Widget> convertToCupertinoDialogActions({
  1. required ActionCallback<T> onPressed,
})

Implementation

List<Widget> convertToCupertinoDialogActions({
  required ActionCallback<T> onPressed,
}) =>
    map((a) => a.convertToCupertinoDialogAction(
          onPressed: onPressed,
        )).toList();