ActionBack constructor

const ActionBack({
  1. required Widget child,
  2. bool canBack = true,
  3. void onBack()?,
  4. Key? key,
})

Implementation

const ActionBack({
  required this.child,
  this.canBack = true,
  this.onBack,
  super.key,
});