Unverified Commit f62e6d9e authored by Chinmay Garde's avatar Chinmay Garde Committed by GitHub

Fix type mismatch while taking a screenshot using the resident runner. (#20555)

parent ede7c15a
...@@ -376,7 +376,9 @@ class IOSDevice extends Device { ...@@ -376,7 +376,9 @@ class IOSDevice extends Device {
bool get supportsScreenshot => iMobileDevice.isInstalled; bool get supportsScreenshot => iMobileDevice.isInstalled;
@override @override
Future<Null> takeScreenshot(File outputFile) => iMobileDevice.takeScreenshot(outputFile); Future<Null> takeScreenshot(File outputFile) async {
await iMobileDevice.takeScreenshot(outputFile);
}
} }
/// Decodes an encoded syslog string to a UTF-8 representation. /// Decodes an encoded syslog string to a UTF-8 representation.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment