foreground method
Implementation
Widget foreground() {
return Builder(
builder: (context) {
final themeData = Theme.of(context);
return DefaultTextStyle.merge(
child: this,
style: TextStyle(
color: themeData.colorScheme.foreground,
),
);
},
);
}