AfterLayout constructor

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

Implementation

const AfterLayout({
  super.key,
  required this.callback,
  super.child,
});