cdnBaseUrl property

String cdnBaseUrl
inherited

Set the base url of our cdn.

Implementation

String get cdnBaseUrl => _cdnBaseUrl;
void cdnBaseUrl=(String value)
inherited

Change the _cdnBaseUrl field value. cdnBaseUrlChanged will be invoked only if the field's value has changed.

Implementation

set cdnBaseUrl(String value) {
  if (_cdnBaseUrl == value) {
    return;
  }
  String from = _cdnBaseUrl;
  _cdnBaseUrl = value;
  if (hasValidated) {
    cdnBaseUrlChanged(from, value);
  }
}