getPairedDevices method
Implementation
@override
Future<List<Object?>> getPairedDevices() async {
try {
final result = await methodChannel.invokeMethod('getPairedDevices');
return result;
} catch (e) {
throw Exception(
'getPairedDevices: 블루투스 목록을 읽어들이는 중에 에러 발생: ${e.toString()}');
}
}