forceDraw method
Force refresh surface with last frame. Android only.
Implementation
Future<void> forceDraw() async {
if (Platform.isAndroid) {
await engineInstanceMethodChannel.invokeMethod('forceDraw');
}
}
Force refresh surface with last frame. Android only.
Future<void> forceDraw() async {
if (Platform.isAndroid) {
await engineInstanceMethodChannel.invokeMethod('forceDraw');
}
}