isRecallAlert property
bool
get
isRecallAlert
Implementation
bool get isRecallAlert {
if (bodyType == MessageType.CUSTOM) {
if ((body as CustomMessageBody).event == alertRecalledKey) {
return true;
}
}
return false;
}