url property

String url

Sets / gets the currently loaded URL in the embedded web view.

Implementation

String get url => _url;
void url=(String v)

Implementation

set url(String v) {
  _url = v;
  _iFrameRef.src = v;
}