onProgressUpdated method

void onProgressUpdated(
  1. dynamic callback(
    1. SmartAppUpdateProgressInfo
    )
)

Sets a callback to receive update progress notifications.

Implementation

void onProgressUpdated(Function(SmartAppUpdateProgressInfo) callback) {
  SmartAppUpdatePlatform.instance.setProgressCallback(callback);
}