config static method

void config({
  1. Color? color,
  2. double? sizeAppBar,
  3. String? fontFamily,
  4. double? height,
})

Implementation

static void config({
  Color? color,
  double? sizeAppBar,
  String? fontFamily,
  double? height,
}) {
  if (color != null) {
    colorDefault = color;
  }
  if (sizeAppBar != null) {
    fontSizeAppBar = sizeAppBar;
  }
  if (fontFamily != null) {
    font = fontFamily;
  }
  if (height != null) {
    txHeight = height;
  }
}