getBindingProperty method
Implementation
@override
getBindingProperty(String key) {
switch (key) {
case 'availWidth': return availWidth;
case 'availHeight': return availHeight;
case 'width': return width;
case 'height': return height;
default: return super.getBindingProperty(key);
}
}