ProgressStreamWidget<T extends Object> constructor

ProgressStreamWidget<T extends Object>({
  1. required String initialMessage,
  2. Stream<T>? stream,
  3. String? successMessage,
  4. String? failedMessage,
  5. String toMessage(
    1. T
    )?,
  6. bool isSuccess(
    1. T
    )?,
  7. bool newParagraph = false,
})

Implementation

ProgressStreamWidget({
  required this.initialMessage,
  this.stream,
  this.successMessage,
  this.failedMessage,
  this.toMessage,
  this.isSuccess,
  this.newParagraph = false,
});