getRemainingComplicationUserInfoTransferCount method
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);
}