googleMaps static method

String? googleMaps(
  1. String? googleMaps, {
  2. TextValidateResponse? textResponse,
})

Validate Google Maps.

Implementation

static String? googleMaps(String? googleMaps,
    {TextValidateResponse? textResponse}) {
  return _validateInput(googleMaps, RegularExpression.validateGoogleMaps,
      textResponse, 'Google Maps link');
}