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