OudsToolbarTop constructor

const OudsToolbarTop({
  1. Key? key,
  2. OudsTopBarSize? style = OudsTopBarSize.small,
  3. String? title,
  4. bool translucent = false,
  5. List<OudsTopBarActionConfig>? leadingActions,
  6. List<OudsTopBarActionConfig>? trailingActions,
})

Implementation

const OudsToolbarTop({super.key,
  this.style = OudsTopBarSize.small,
  this.title,
  this.translucent = false,
  this.leadingActions,
  this.trailingActions,
}) : assert (
  style != OudsTopBarSize.medium,
'OudsToolbarTop does not support the medium style. Use small or large.'
);