installApp static method

Future<void> installApp(
  1. AppSet app
)

Invokes the user interface on the current platform to install other apps.

Implementation

static Future<void> installApp(AppSet app) async {
  var map = app.toJson();
  var string = json.encode(map);
  await _channel.invokeMethod('installApp', string);
}