open static method
Opens a file (path or content URI) with the default app.
Implementation
static Future<bool> open(String pathOrUri, {String? mimeType}) async =>
await _call<bool>("open", <String, Object?>{"path": pathOrUri, "mimeType": mimeType}) ?? false;