boldText static method
Creates a Text widget with bold font weight.
Parameters:
context: The build contexttext: The text to display
Implementation
static Widget boldText(BuildContext context, String text) {
return Text(text,
style: TextStyle(fontWeight: FontWeight.bold), softWrap: true);
}