resolveTextStyle method

TextStyle? resolveTextStyle(
  1. Set<MaterialState> states
)
inherited

Implementation

TextStyle? resolveTextStyle(Set<MaterialState> states) {
  return GoogleFonts.getFont(
    'Roboto',
    fontSize: 18,
    fontWeight: FontWeight.bold,
    letterSpacing: 0.50,
  );
}