KeepAliveWrapper constructor

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

Implementation

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