init static method

Future<void> init()

Initializes an app. This method must be called when an app is launched.

Implementation

static Future<void> init() async {
  await _josAppChannel.invokeMethod(
    'JosAppsClient.init',
  );
}