diff --git a/lib/viatom_ble/ble_connect.dart b/lib/viatom_ble/ble_connect.dart index fc8d8e44..ef9c53a0 100644 --- a/lib/viatom_ble/ble_connect.dart +++ b/lib/viatom_ble/ble_connect.dart @@ -3,6 +3,9 @@ import 'package:flutter/services.dart'; class BleChannel { static const platform = MethodChannel('BLE-Platform-Bridge'); + static const platform_ios_ekg = MethodChannel('BLE-Platform-Bridge-IOS-EKG'); + + //BLE-Platform-Bridge static Future getScanningResult(List deviceType) async { try { @@ -63,4 +66,5 @@ class BleChannel { return "Error: $e"; } } + }