KeepAliveWidget constructor

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

Implementation

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