documentUrl property

String? get documentUrl

The URL of the document associated with this context, or undefined if the context is not hosted in a document.

Implementation

String? get documentUrl => _wrapped.documentUrl;
set documentUrl (String? v)

Implementation

set documentUrl(String? v) {
  _wrapped.documentUrl = v;
}