toHexColor method

String toHexColor()

Implementation

String toHexColor() {
  if (kIsWeb) {
    return toHexColorWeb();
  }
  return "#${this.value.toRadixString(16)}";
}