startFlexibleUpdate method

Future<bool> startFlexibleUpdate()

Starts a flexible update flow.

Implementation

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