LoadingConfig constructor

const LoadingConfig({
  1. bool isLoading = false,
  2. Widget? loadingIndicator,
  3. Color? typingIndicatorColor,
  4. double? typingIndicatorSize,
  5. bool showCenteredIndicator = false,
})

Implementation

const LoadingConfig({
  this.isLoading = false,
  this.loadingIndicator,
  this.typingIndicatorColor,
  this.typingIndicatorSize,
  this.showCenteredIndicator = false,
});