isFormatReadSupportedMagick function

bool isFormatReadSupportedMagick(
  1. String format
)

Implementation

bool isFormatReadSupportedMagick(String format) =>
    _magickSupportedFormats
        .select((element) => element.format == format)
        ?.read ??
    false;