BackgroundFetchOptions constructor

BackgroundFetchOptions({
  1. int? downloadTotal,
})

Implementation

factory BackgroundFetchOptions({int? downloadTotal}) =>
    BackgroundFetchOptions._(downloadTotal: downloadTotal ?? 0);