title static method

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

Fonte title Font family: Inter Font size: 16 Font weight: 500 Height: 150%

Implementation

@Deprecated('Use label instead')
static TextStyle title({Color? color}) {
  return TextStyle(
    color: color,
    fontFamily: 'Inter',
    fontSize: 16.0,
    fontWeight: FontWeight.w500,
    height: 1.5,
    package: package,
  );
}