isAlertCustomMessage property

bool get isAlertCustomMessage

Implementation

bool get isAlertCustomMessage {
  if (bodyType == MessageType.CUSTOM) {
    if ((body as CustomMessageBody).event == alertCustomMessageKey) {
      return true;
    }
  }
  return false;
}