showBottomSheet method
      
void
showBottomSheet({ 
    
- required AFStateProgrammingInterface<AFComponentState, AFBuildContext< spi,AFFlexibleStateView, AFRouteParam> , AFFunctionalTheme>
- Color? backgroundColor,
- double? elevation,
- ShapeBorder? shape,
- Clip? clipBehavior,
See AFBuildContext.showBottomSheet, this is a one line call to that method, here for discoverability.
Implementation
void showBottomSheet({
  required AFStateProgrammingInterface spi,
  required AFNavigatePushAction navigate,
  Color? backgroundColor,
  double? elevation,
  ShapeBorder? shape,
  Clip? clipBehavior,
}) {
  return spi.context.showBottomSheet(
    navigate: navigate,
    backgroundColor: backgroundColor,
    elevation: elevation,
    shape: shape,
    clipBehavior: clipBehavior,
  );
}