AppBarActions constructor

const AppBarActions({
  1. Key? key,
  2. required double appBarHeight,
  3. required double appBarIconWidth,
  4. required List<ActionInfo>? actions,
})

Implementation

const AppBarActions({
  super.key,
  required this.appBarHeight,
  required this.appBarIconWidth,
  required this.actions,
});