url property
Matches an http or https URL.
Implementation
static final RegExp url = RegExp(
r'^https?://[^\s/$.?#].[^\s]*$',
caseSensitive: false,
);
Matches an http or https URL.
static final RegExp url = RegExp(
r'^https?://[^\s/$.?#].[^\s]*$',
caseSensitive: false,
);