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