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