convertToHex static method

String convertToHex(
  1. Color color
)

Implementation

static String convertToHex(Color color) {
  final String red = _colorByte(color.r).toRadixString(16).padLeft(2, '0');
  final String green = _colorByte(color.g).toRadixString(16).padLeft(2, '0');
  final String blue = _colorByte(color.b).toRadixString(16).padLeft(2, '0');
  return '#$red$green$blue';
}