closedMessage property

String? get closedMessage

message the relay sent with its CLOSED, null when it sent none

Implementation

String? get closedMessage => _closedMessage;
set closedMessage (String? value)

Implementation

set closedMessage(String? value) {
  if (_closedMessage == value) return;
  _closedMessage = value;
  onOutcomeChanged?.call();
}