getBindingProperty method

  1. @override
dynamic getBindingProperty(
  1. String key
)
override

Implementation

@override
getBindingProperty(String key) {
  switch (key) {
    case 'src': return src;
    case 'loading': return loading;
    case 'width': return width;
    case 'height': return height;
    case 'scaling': return scaling;
    case 'naturalWidth': return naturalWidth;
    case 'naturalHeight': return naturalHeight;
    case 'complete': return complete;
    default: return super.getBindingProperty(key);
  }
}