R3AppBarWidget constructor

const R3AppBarWidget({
  1. Key? key,
  2. required String text,
  3. IconButton? iconButton,
  4. required List<Widget> actions,
  5. String? subTitle,
})

Implementation

const R3AppBarWidget(
    {Key? key,
    required this.text,
    this.iconButton, required this.actions, this.subTitle})
    : super(key: key);