FHeader constructor

const FHeader({
  1. required Widget title,
  2. FRootHeaderStyle? style,
  3. List<Widget> actions,
  4. Key? key,
})

Creates a header.

It is typically used on pages at the root of the navigation stack.

Implementation

const factory FHeader({required Widget title, FRootHeaderStyle? style, List<Widget> actions, Key? key}) =
    _FRootHeader;