isEphemeral property

bool isEphemeral

Whether the channel is ephemeral.

Implementation

bool get isEphemeral {
  checkUnsupportedAction();
  return _isEphemeral;
}
void isEphemeral=(dynamic value)

Implementation

set isEphemeral(value) {
  checkUnsupportedAction();
  _isEphemeral = value;
}