progressNotifier property

ValueNotifier<ProgressBarState> progressNotifier
final

Implementation

final progressNotifier = ValueNotifier<ProgressBarState>(
  ProgressBarState(
    current: Duration.zero,
    buffered: Duration.zero,
    total: Duration.zero,
  ),
);