FastTheme constructor

FastTheme({
  1. Color appBarColor = const Color(0xFFFFFFFF),
  2. Color appBarTextColor = const Color(0xFF000000),
  3. Color backgroundColor = const Color(0xFFF7F6FB),
  4. Color mainColor = const Color(0xFFCC1D2A),
  5. Color lineColor = const Color(0xffF7F7F7),
  6. Brightness brightness = Brightness.dark,
  7. Color fontColor = const Color(0xFF3C3C3C),
})

Implementation

FastTheme({
  this.appBarColor = const Color(0xFFFFFFFF),
  this.appBarTextColor = const Color(0xFF000000),
  this.backgroundColor = const Color(0xFFF7F6FB),
  this.mainColor = const Color(0xFFCC1D2A),
  this.lineColor = const Color(0xffF7F7F7),
  this.brightness = Brightness.dark,
  this.fontColor = const Color(0xFF3C3C3C),
});