imageUrl property
String?
get
imageUrl
获取网络的URL
Implementation
String? get imageUrl {
if (isNetworkUrl) {
return (this as XXImage).url;
}
return null;
}
获取网络的URL
String? get imageUrl {
if (isNetworkUrl) {
return (this as XXImage).url;
}
return null;
}