OctoSet constructor

OctoSet({
  1. OctoImageBuilder? imageBuilder,
  2. OctoPlaceholderBuilder? placeholderBuilder,
  3. OctoProgressIndicatorBuilder? progressIndicatorBuilder,
  4. OctoErrorBuilder? errorBuilder,
})

Implementation

OctoSet({
  this.imageBuilder,
  this.placeholderBuilder,
  this.progressIndicatorBuilder,
  this.errorBuilder,
}) : assert(placeholderBuilder != null || progressIndicatorBuilder != null);