src method

  1. @ControllerProps(NodeProps.kSrc)
void src(
  1. String src
)

Implementation

@ControllerProps(NodeProps.kSrc)
void src(String src) {
  src = context.convertRelativePath(rootId, src);
  if (src != imgSrc) {
    imgSrc = src;
    _isFirstLoad = true;
  }
}