bold method
Implementation
Widget bold() {
if (this is WrappedText) {
return (this as WrappedText).copyWithStyle(
(context, theme) => theme.typography.bold,
);
}
return WrappedText(
style: (context, theme) => theme.typography.bold, child: this);
}