periodicRefreshIntervalProvider top-level property

Provider<Duration?> periodicRefreshIntervalProvider
final

Provider for the periodic refresh interval

Defaults to null meaning no refreshing will be done. For a real value that can be used within a running app, consider using realFlagOverrides.

Implementation

final periodicRefreshIntervalProvider = Provider<Duration?>(
  (ref) => null,
);