colorInt method

TextField colorInt(
  1. int color
)

Implementation

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