of static method

BottomAlertDialogConfig of(
  1. BuildContext context
)

Implementation

static BottomAlertDialogConfig of(BuildContext context) {
  var result =
      context.dependOnInheritedWidgetOfExactType<BottomAlertDialogConfig>();
  assert(result != null, 'No BottomAlertDialogConfig found in context');
  return result!;
}