AppBarStyle constructor

AppBarStyle({
  1. bool enabledBottomLine = false,
  2. bool enabledProfile = true,
  3. String backgroundColor = '#ff292a2c',
  4. String backgroundColorDarkTheme = '#ff1f1f1f',
  5. String cardColor = '#ffffffff',
  6. String cardColorDarkTheme = '#ff292a2c',
  7. double height = 55,
  8. String iconColor = '#ffaeaeae',
  9. String iconColorDarkTheme = '#ffaeaeae',
  10. String labelColor = '#ff000000',
  11. String labelColorDarkTheme = '#ffffffff',
  12. String logoUrl = '',
  13. String type = 'defaultDesign',
})

Implementation

AppBarStyle({
  this.enabledBottomLine = false,
  this.enabledProfile = true,
  this.backgroundColor = '#ff292a2c',
  this.backgroundColorDarkTheme = '#ff1f1f1f',
  this.cardColor = '#ffffffff',
  this.cardColorDarkTheme = '#ff292a2c',
  this.height = 55,
  this.iconColor = '#ffaeaeae',
  this.iconColorDarkTheme = '#ffaeaeae',
  this.labelColor = '#ff000000',
  this.labelColorDarkTheme = '#ffffffff',
  this.logoUrl = '',
  this.type = 'defaultDesign',
});