isFormatReadSupportedBackup function

bool isFormatReadSupportedBackup(
  1. String format
)

Implementation

bool isFormatReadSupportedBackup(String format) =>
    _pureDartSupportedFormats
        .select((element) => element.format == format)
        ?.read ??
    false;