ElPopScope<T> constructor

const ElPopScope<T>({
  1. Key? key,
  2. required Widget child,
  3. bool canPop = true,
  4. PopInvokedWithResultCallback<T>? onPopInvokedWithResult,
  5. BuildContext? context,
  6. int index = 0,
})

Implementation

const ElPopScope({
  super.key,
  required this.child,
  this.canPop = true,
  this.onPopInvokedWithResult,
  this.context,
  this.index = 0,
});