src property

String get src

Implementation

String get src {
  return tempUrl;
}
set src (String url)

Implementation

set src(String url) {
  if (tempUrl != url) {
    controller.loadRequest(Uri.parse(url));
    tempUrl = url;
  }
}