Skip to content

Instantly share code, notes, and snippets.

@matifdeveloper
Created November 9, 2023 04:39
Show Gist options
  • Save matifdeveloper/c2ff86c43b207ea0687cffde7414fa01 to your computer and use it in GitHub Desktop.
Save matifdeveloper/c2ff86c43b207ea0687cffde7414fa01 to your computer and use it in GitHub Desktop.
Check the String is URL or not

Check the String is URL or not

Created with <3 with dartpad.dev.

void main() {
print(isURL('https://dartpad.dev/?'));
}
bool isURL(String value) {
final uri = Uri.parse(value);
if (uri.scheme == 'http' || uri.scheme == 'https') {
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment