OmegaAppBar constructor

OmegaAppBar({
  1. String title = 'Omega',
  2. String subtitle = '',
  3. double titleSize = 16,
  4. List<Widget>? actions,
  5. Widget? leading,
  6. required Color iconDataColor,
  7. required Color textColor,
  8. required Color bgColor,
  9. Brightness brightness = Brightness.light,
})

Implementation

OmegaAppBar({
  this.title = 'Omega',
  this.subtitle = '',
  this.titleSize = 16,
  this.actions,
  this.leading,
  this.logo,
  required this.iconDataColor,
  required this.textColor,
  required this.bgColor,
  this.brightness = Brightness.light,
});