tapBoldBtn method
void
tapBoldBtn()
Implementation
void tapBoldBtn() {
_fontWeight = _fontWeight == FontWeight.bold ? FontWeight.normal : FontWeight.bold;
setState(() {
});
}
void tapBoldBtn() {
_fontWeight = _fontWeight == FontWeight.bold ? FontWeight.normal : FontWeight.bold;
setState(() {
});
}