valueTextStyle static method

TextStyle valueTextStyle(
  1. DraftModeUIThemeData theme, {
  2. Color? color,
})

Implementation

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