getUpdatedDevices method

  1. @override
Future<List?> getUpdatedDevices()
override

Implementation

@override
Future<List<dynamic>?> getUpdatedDevices() async {
  final res =
      await methodChannel.invokeMethod<List<dynamic>>('getUpdatedDevices');
  return res;
}