threeNoColor static method

TextStyle threeNoColor({
  1. Color? color,
  2. num? size,
  3. FontWeight weight = FontWeight.normal,
  4. Brightness? brightness,
})

采用默认 DefaultTextStyle 的颜色

Implementation

static TextStyle threeNoColor(
    {Color? color,
    num? size,
    FontWeight weight = FontWeight.normal,
    Brightness? brightness}) {
  return three(color: null, size: size, weight: weight, ignoreColor: true);
}