getRemainingComplicationUserInfoTransferCount method

Future<int> getRemainingComplicationUserInfoTransferCount()

Retrieve remaining transfer count, use this method to determine that you should send a Complication user info data.

Implementation

Future<int> getRemainingComplicationUserInfoTransferCount() async {
  return channel
      .invokeMethod("getRemainingComplicationUserInfoTransferCount")
      .then((count) => count ?? 0);
}