valueTextStyle static method
Implementation
static TextStyle valueTextStyle(
DraftModeUIThemeData theme, {
Color? color,
}) {
return TextStyle(
color: color ?? theme.primaryColor.text,
fontSize: theme.rowTextFontSize,
fontWeight: theme.rowTextFontWeight,
);
}