PlaceholdersConfig constructor

PlaceholdersConfig({
  1. String? loadingText,
  2. String? emptyText,
  3. String? reload,
  4. Widget? icon,
  5. Widget? loadingIndicator,
  6. double spaceBetweenIconAndText = 10,
  7. double spaceBetweenTextAndButton = 5,
})

Implementation

PlaceholdersConfig({
  this.loadingText,
  this.emptyText,
  this.reload,
  this.icon,
  this.loadingIndicator,
  this.spaceBetweenIconAndText = 10,
  this.spaceBetweenTextAndButton = 5,
}) : builder = null;