urlEndPoint property
String?
get
urlEndPoint
Implementation
static String? get urlEndPoint {
if (_urlEndPoint == null || _urlEndPoint!.isEmpty)
throw NullOrEmptyArgument("GlobalVariables.urlEndPoint");
return _urlEndPoint;
}
set
urlEndPoint
(String? value)
Implementation
static set urlEndPoint(String? value) => _urlEndPoint = value;