FutureTask constructor

FutureTask({
  1. required Future future,
  2. String? progressLabel,
})

Implementation

FutureTask({required this.future, String? progressLabel})
    : _progressLabel = progressLabel {
  _logger.info('Initialized task with $progressLabel');
}