colorInt method

Text colorInt(
  1. int color
)

Implementation

Text colorInt(int color) {
  var newStyle = TextStyle(color: Color(color));
  return copyWith(style: style?.merge(newStyle) ?? newStyle);
}