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