LKeepAlive constructor

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

Implementation

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