From 3d1d61066fb2a10b7a91b73267ce99b8568e1c63 Mon Sep 17 00:00:00 2001 From: haroon amjad Date: Sun, 7 Jan 2024 16:52:43 +0300 Subject: [PATCH] EKG iOS Integration in progress --- lib/viatom_ble/ble_connect.dart | 4 ++++ 1 file changed, 4 insertions(+) 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"; } } + }