toHexMap method

Map<String, String> toHexMap(
  1. String key
)

Implementation

Map<String, String> toHexMap(String key) {
  return {"$key": "#${this.value.toRadixString(16)}"};
}