BrnIconAction constructor

const BrnIconAction({
  1. Key? key,
  2. required VoidCallback iconPressed,
  3. required Widget child,
  4. double? size,
  5. AppBarConfig? themeData,
})

Implementation

const BrnIconAction({
  Key? key,
  required this.iconPressed,
  required this.child,
  this.size,
  this.themeData,
}) : super(key: key);