takeScreenshot method
Implementation
Future<void> takeScreenshot(RenderRepaintBoundary boundary) async {
Timer.periodic(const Duration(milliseconds: 100), (Timer timer) async {
await takeSingleScreenShot(boundary);
});
}
Future<void> takeScreenshot(RenderRepaintBoundary boundary) async {
Timer.periodic(const Duration(milliseconds: 100), (Timer timer) async {
await takeSingleScreenShot(boundary);
});
}