kind property

Kind get kind

Get Kind of this Chat.

Implementation

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

Sets the Kind of this Chat.

Implementation

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