SubscriptionCmd constructor

SubscriptionCmd({
  1. int? cmdId,
  2. String? keys,
  3. required EntityType entityType,
  4. required String entityId,
  5. AttributeScope? scope,
  6. bool unsubscribe = false,
  7. required WsCmdType type,
})

Implementation

SubscriptionCmd(
    {int? cmdId,
    String? keys,
    required this.entityType,
    required this.entityId,
    this.scope,
    this.unsubscribe = false,
    required WsCmdType type})
    : super(cmdId: cmdId, keys: keys, type: type);