ProgressStatus typedef

ProgressStatus = void Function(ProgressStatusEvent event)

Defines a function type, ProgressStatus, that takes a ProgressStatusEvent as an argument and returns a FutureOr<void>.

This function type is intended to be used as a callback function that is called when a progress status event occurs, allowing for actions such as updating a progress bar or logging the progress status.

Implementation

typedef ProgressStatus = void Function(ProgressStatusEvent event);