SubscribeOptions constructor
const
SubscribeOptions({
- required String topic,
- @Default.new(TransportType.relay) TransportType transportType,
- @Default.new(false) bool skipSubscribe,
Implementation
@JsonSerializable(includeIfNull: false)
const factory SubscribeOptions({
required String topic,
@Default(TransportType.relay) TransportType transportType,
@Default(false) bool skipSubscribe,
}) = _SubscribeOptions;