show method

dynamic show(
  1. BuildContext context
)

Implementation

show(BuildContext context) {
  return showModalBottomSheet<T>(
      context: context,
      backgroundColor: background,
      isDismissible: closeOnClickOverlay,
      isScrollControlled: true,
      shape: RoundedRectangleBorder(
          borderRadius:
              BorderRadius.vertical(top: Radius.circular(roundRadius!))),
      builder: (BuildContext context) {
        return CHFActionSheetState<T>(this);
      });
}