groupStyle method

TextStyle groupStyle(
  1. BuildContext context
)

Implementation

TextStyle groupStyle(BuildContext context) {
  return TextStyle(
    color: Theme.of(context).accentColor,
    fontSize: 12.0,
    fontWeight: FontWeight.bold,
  );
}