menu
spinach_core package
documentation
commons/utils/ImageUtil.dart
ImageUtil
isUrl static method
isUrl static method
dark_mode
light_mode
isUrl
static method
bool
isUrl
(
String
text
)
Implementation
static bool isUrl(String text) { try { Uri.parse(text); return true; } catch (_) { return false; } }
spinach_core package
documentation
commons/utils/ImageUtil
ImageUtil
isUrl static method
ImageUtil class