sendConfigModelSubscriptionDeleteAll method

Future<void> sendConfigModelSubscriptionDeleteAll(
  1. int elementAddress,
  2. int modelIdentifier
)

Will send a ConfigModelSubscriptionDeleteAll message to the given elementAddress.

Implementation

Future<void> sendConfigModelSubscriptionDeleteAll(int elementAddress, int modelIdentifier) =>
    _methodChannel.invokeMethod(
      'sendConfigModelSubscriptionDeleteAll',
      {
        'elementAddress': elementAddress,
        'modelIdentifier': modelIdentifier,
      },
    );