url
static bool isWebUrl(String value) { RegExp url = new RegExp(r"^((https|http|ftp|rtsp|mms)?:\/\/)[^\s]+"); return url.hasMatch(value); }