config static method
Implementation
static config({MaterialColor? theme, Gradient? primaryGradient}) {
/// 配置主题
if (theme != null) {
CommonColors.theme = theme;
}
if (primaryGradient != null) {
CommonColors.primaryGradient = primaryGradient;
}
}