buildDisabledColors<C> method

Map<C, String> buildDisabledColors<C>(
  1. List<C> keys
)

Builds a Map with a disabled color for each provided key from parameter keys.

Implementation

Map<C, String> buildDisabledColors<C>(List<C> keys) {
  return buildDColorsFromFunction(keys, generateDisabledColor);
}