getBindingProperty method
dynamic
getBindingProperty(
- String key
)
override
Implementation
@override
getBindingProperty(String key) {
switch (key) {
case 'href': return href;
case 'target': return target;
case 'rel': return rel;
case 'type': return type;
case 'protocol': return protocol;
case 'host': return host;
case 'hostname': return hostname;
case 'port': return port;
case 'pathname': return pathname;
case 'search': return search;
case 'hash': return hash;
default: return super.getBindingProperty(key);
}
}