videoCid property
String
get
videoCid
Implementation
String get videoCid {
if (flags.attachements) {
var f = body.split(' ');
var cid = '';
f.forEach((element) {
if (element.startsWith('!∞')) {
//might be followed immediately with another !| or..
final bobo = element.split('!');
cid = bobo[1].substring(1, bobo[1].length);
}
});
return cid;
}
return '';
}