forceDraw method

Future<void> forceDraw()

Force refresh surface with last frame. Android only.

Implementation

Future<void> forceDraw() async {
  if (Platform.isAndroid) {
    await engineInstanceMethodChannel.invokeMethod('forceDraw');
  }
}