monospaceStyle function

TextStyle monospaceStyle(
  1. BuildContext context
)

Implementation

TextStyle monospaceStyle(BuildContext context) => TextStyle(
  color: Theme.of(context).colorScheme.onSurface,
  fontSize: 14,
  fontWeight: FontWeight.bold,
  fontFamily: 'monospace',
);