isUriSupported method
Check Uri is supported or not
Implementation
@override
bool isUriSupported(String uriString) {
try {
Uri uri = Uri.parse(uriString);
if (uri.isScheme('content')) {
return true;
}
} catch (_) {}
return false;
}