uuidsOfUserDevicesExcludingCurrentDevice method

  1. @override
Future<List<String>> uuidsOfUserDevicesExcludingCurrentDevice()
override

Implementation

@override
Future<List<String>> uuidsOfUserDevicesExcludingCurrentDevice() async {
  assert(Platform.isIOS);
  final List<String>? uuids = await methodChannel
      .invokeListMethod<String>('uuidsOfUserDevicesExcludingCurrentDevice');
  return uuids!;
}