isValid static method

bool isValid(
  1. int? value
)

Implementation

static bool isValid(int? value) =>
    value == grayscale ||
    value == rgb ||
    value == indexed ||
    value == grayscaleAlpha ||
    value == rgba;