thumbnailRemotePath property
String?
get
thumbnailRemotePath
Implementation
String? get thumbnailRemotePath {
if (bodyType == MessageType.IMAGE) {
return (body as ImageMessageBody).thumbnailRemotePath;
} else if (bodyType == MessageType.VIDEO) {
return (body as VideoMessageBody).thumbnailRemotePath;
}
return null;
}