isValidUrl function

bool isValidUrl(
  1. String value
)

Implementation

bool isValidUrl(String value) => Uri.tryParse(value) != null;