check static method
Implementation
static void check(String prefix) {
if (isValidPrefix(prefix)) return;
throw StorageInvalidPrefixError('Invalid prefix: $prefix');
}
static void check(String prefix) {
if (isValidPrefix(prefix)) return;
throw StorageInvalidPrefixError('Invalid prefix: $prefix');
}