BusyState constructor

const BusyState({
  1. required bool isBusy,
  2. String? reason,
  3. Duration? estimatedDuration,
})

Implementation

const BusyState({required this.isBusy, this.reason, this.estimatedDuration});