RawThemeData constructor

const RawThemeData({
  1. Color primary = const Color(0xff409EFF),
  2. Color secondary = const Color(0xff409EFF),
  3. Color success = const Color(0xff67C23A),
  4. Color info = const Color(0xff909399),
  5. Color warning = const Color(0xffE6A23C),
  6. Color error = const Color(0xffF56C6C),
  7. Color bgColor = const Color.fromRGBO(250, 250, 250, 1.0),
  8. Color borderColor = const Color.fromRGBO(208, 208, 208, 1.0),
})

Implementation

const RawThemeData({
  this.primary = const Color(0xff409EFF),
  this.secondary = const Color(0xff409EFF),
  this.success = const Color(0xff67C23A),
  this.info = const Color(0xff909399),
  this.warning = const Color(0xffE6A23C),
  this.error = const Color(0xffF56C6C),
  this.bgColor = const Color.fromRGBO(250, 250, 250, 1.0),
  this.borderColor = const Color.fromRGBO(208, 208, 208, 1.0),
});