UfbtProgress constructor

const UfbtProgress({
  1. required String id,
  2. required String title,
  3. required UfbtProgressState state,
  4. required int current,
  5. int? total,
  6. String? message,
})

Implementation

const UfbtProgress({
  required this.id,
  required this.title,
  required this.state,
  required this.current,
  this.total,
  this.message,
});