completeFlexibleUpdate method
Completes a flexible update by installing the downloaded update.
Implementation
Future<bool> completeFlexibleUpdate() async {
try {
return await SmartAppUpdatePlatform.instance.completeFlexibleUpdate();
} catch (e) {
throw SmartAppUpdateException('Failed to complete flexible update: $e');
}
}