one static method

TextStyle one({
  1. Color? color,
  2. num? size,
  3. FontWeight weight = FontWeight.normal,
  4. Brightness? brightness,
  5. bool ignoreColor = false,
})

忽略

Implementation

static TextStyle one({
  Color? color,
  num? size,
  FontWeight weight = FontWeight.normal,
  Brightness? brightness,
  bool ignoreColor = false,
}) {
  return normal(
    size: size ?? FConfig.ins.textOne,
    color: color ?? CConfig.cTextColorOne,
    fontWeight: weight,
    ignoreColor: ignoreColor,
  );
}