stopHighRefreshRate method
Implementation
@override
Future<bool> stopHighRefreshRate() async {
if (!_checkPlatform()) {
return false;
}
final result = await methodChannel!.invokeMethod<bool>(
'stopHighRefreshRate',
);
return result ?? false;
}