SubscribeOptions constructor

SubscribeOptions({
  1. String? match,
  2. String? metaTopic,
  3. bool? getRetained,
  4. Map<String, dynamic>? custom,
})

the constructor

Implementation

SubscribeOptions({
  this.match,
  this.metaTopic,
  this.getRetained,
  Map<String, dynamic>? custom,
}) {
  if (custom != null) {
    this.custom.addAll(custom);
  }
}