Hi good day i have a value enum in my mysql pending and done i want to display in my flutter app the the first letter is capitalize like Pending or if if it is done Done
Text('Status:\t' + x.status,
style: TextStyle(
fontSize: 25.0,
fontWeight: FontWeight.bold,
color: x.status == 'pending'
? Colors.red
: Colors.green)),