avatar property
Contact avatar image.
Implementation
@override
TransportableFile? get avatar {
TransportableFile? img = _image;
if (img == null) {
var uri = this['avatar'];
img = TransportableFile.parse(uri);
_image = img;
}
return img;
}