AppBarColumn constructor

const AppBarColumn({
  1. Key? key,
  2. required AppBarController controller,
  3. required BoxConstraints constraints,
  4. required List<Widget> children,
})

Implementation

const AppBarColumn({
  super.key,
  required this.controller,
  required this.constraints,
  required this.children,
});