RelayBroadcastResponse constructor

RelayBroadcastResponse({
  1. required String relayUrl,
  2. bool okReceived = false,
  3. bool broadcastSuccessful = false,
  4. String msg = "",
})

creates a new RelayBroadcastResponse instance

Implementation

RelayBroadcastResponse({
  required this.relayUrl,
  this.okReceived = false,
  this.broadcastSuccessful = false,
  this.msg = "",
});