src property
String?
get
src
Implementation
String? get src {
return curSrc;
}
set
src
(String? str)
Implementation
set src(String? str) {
if (str != null) {
needLoadImage = true;
curSrc = str;
}
}