sendTempUnit method

Future<void> sendTempUnit(
  1. int temp
)

Implementation

Future<void> sendTempUnit(int temp) async {
  await mConnMethodChannel
      .invokeMethod("sendTempUnit", <String, int>{"temp": temp});
}