showInChannel property

bool showInChannel

Returns true if the message is in a thread and should be shown in the main channel as well.

Implementation

bool get showInChannel => message.showInChannel ?? false;
void showInChannel=(bool newValue)

Sets the showInChannel flag of the message.

Implementation

set showInChannel(bool newValue) {
  message = message.copyWith(showInChannel: newValue);
}