fix(nearby_service_method_channel): formatting

This commit is contained in:
ksenia312
2024-01-31 22:26:06 +01:00
parent 880cded058
commit 04b261361a
+5 -3
View File
@@ -22,9 +22,11 @@ class MethodChannelNearbyService extends NearbyServicePlatform {
@override
Future<NearbyDeviceInfo?> getCurrentDeviceInfo() async {
return NearbyDeviceMapper.instance.mapToDevice(
await methodChannel.invokeMethod('getCurrentDevice'),
)?.info;
return NearbyDeviceMapper.instance
.mapToDevice(
await methodChannel.invokeMethod('getCurrentDevice'),
)
?.info;
}
@override