notify method

Future<int> notify(
  1. String mac,
  2. String uuid
)

Implementation

Future<int> notify(String mac, String uuid) async {
  final result = await _api.notify(mac, uuid);
  return XCloudResponse.fromOriginResponse(result).code;
}