KeepAliveWrapper constructor

const KeepAliveWrapper({
  1. Key? key,
  2. bool keepAlive = true,
  3. required Widget child,
})

Implementation

const KeepAliveWrapper({
  super.key,
  this.keepAlive = true,
  required this.child,
});