FixedBackoff constructor

const FixedBackoff({
  1. Duration delay = const Duration(seconds: 5),
})

Creates a fixed backoff strategy with a constant delay.

Implementation

const FixedBackoff({this.delay = const Duration(seconds: 5)});