isUnPinAlert property

bool get isUnPinAlert

Implementation

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