addBgColor static method

TextStyle addBgColor(
  1. TextStyle textStyle,
  2. String value
)

Creates a TextStyle to handle CSS background

Implementation

static TextStyle addBgColor(TextStyle textStyle, String value) {
  final Paint paint = Paint();
  paint.color = _convertColor(value);
  return textStyle.copyWith(background: paint);
}