tiny static method

  1. @Deprecated('Use small instead')
TextStyle tiny({
  1. Color? color,
})

Fonte tiny Font family: Inter Font size: 10 Font weight: 500 Height: 120%

Implementation

@Deprecated('Use small instead')
static TextStyle tiny({Color? color}) {
  return TextStyle(
    color: color,
    fontFamily: 'Inter',
    fontSize: 10.0,
    fontWeight: FontWeight.w500,
    height: 1.2,
    package: package,
  );
}