isFormatWriteSupportedBackup function

bool isFormatWriteSupportedBackup(
  1. String format
)

Implementation

bool isFormatWriteSupportedBackup(String format) =>
    _pureDartSupportedFormats
        .select((element) => element.format == format)
        ?.write ??
    false;