startImmediateUpdate method

Future<bool> startImmediateUpdate()

Starts an immediate update flow.

Implementation

Future<bool> startImmediateUpdate() async {
  try {
    return await SmartAppUpdatePlatform.instance.startImmediateUpdate();
  } catch (e) {
    throw SmartAppUpdateException('Failed to start immediate update: $e');
  }
}