PostMountCallback constructor

const PostMountCallback({
  1. required Widget child,
  2. void callback()?,
  3. Key? key,
})

Creates a PostMountCallback widget.

Implementation

const PostMountCallback({required this.child, this.callback, Key? key})
    : super(key: key);