closePopover<T> function

  1. @Deprecated('Use closeOverlay instead')
Future<void> closePopover<T>(
  1. BuildContext context, [
  2. T? result
])

Implementation

@Deprecated('Use closeOverlay instead')
Future<void> closePopover<T>(BuildContext context, [T? result]) {
  return closeOverlay<T>(context, result);
}