chatTypePrivate property

ChatTypePrivate? chatTypePrivate

An ordinary chat with a user

Implementation

ChatTypePrivate? get chatTypePrivate {
  if (this is ChatTypePrivate) {
    return this as ChatTypePrivate;
  }
  return null;
}