isKickedGroupAlert property

bool get isKickedGroupAlert

Implementation

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