PostFrame constructor

const PostFrame({
  1. Key? key,
  2. required Widget child,
  3. VoidCallback? onPostFrame,
  4. bool enabled = true,
})

Creates a PostFrame widget.

Implementation

const PostFrame({
  super.key,
  required this.child,
  this.onPostFrame,
  this.enabled = true,
});