kind property

ChatKind get kind

Get ChatKind of this Chat.

Implementation

ChatKind get kind => ChatKind.values[kindIndex];
set kind (ChatKind chatKind)

Sets the ChatKind of this Chat.

Implementation

set kind(ChatKind chatKind) {
  kindIndex = chatKind.index;
}