showBottomActionController method

void showBottomActionController(
  1. AlertControllerObject data
)

Shows a bottom action controller (aka an 'action sheet')

Implementation

void showBottomActionController(AlertControllerObject data) {
  _currentObserver != null
      ? _currentObserver!.showBottomActionController(data)
      : throwUnregisteredObserverError();
}