colorValue static method

int colorValue(
  1. Map<String, Object> entry
)

Return RGB value as int from a color entry in _EXTENDED_COLOR_NAMES.

Implementation

static int colorValue(Map<String, Object> entry) {
  return entry['value'] as int;
}