RawThemeData constructor
const
RawThemeData({
- Color primary = const Color(0xff409EFF),
- Color secondary = const Color(0xff409EFF),
- Color success = const Color(0xff67C23A),
- Color info = const Color(0xff909399),
- Color warning = const Color(0xffE6A23C),
- Color error = const Color(0xffF56C6C),
- Color bgColor = const Color.fromRGBO(250, 250, 250, 1.0),
- 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),
});