getGyroscope method
Returns a Future with the gyroscope event.
Implementation
@override
Future<GyroscopeEvent?> getGyroscope() async {
final gyroscope =
await methodChannel.invokeMethod<GyroscopeEvent>('getGyroscope');
return gyroscope;
}