isFormatWriteSupportedMagick function

bool isFormatWriteSupportedMagick(
  1. String format
)

Implementation

bool isFormatWriteSupportedMagick(String format) =>
    _magickSupportedFormats
        .select((element) => element.format == format)
        ?.write ??
    false;