url property

RegExp url
final

Matches an http or https URL.

Implementation

static final RegExp url = RegExp(
  r'^https?://[^\s/$.?#].[^\s]*$',
  caseSensitive: false,
);