SpinKitWanderingCubes constructor

const SpinKitWanderingCubes({
  1. Key? key,
  2. Color? color,
  3. BoxShape shape = BoxShape.rectangle,
  4. double size = 50.0,
  5. IndexedWidgetBuilder? itemBuilder,
  6. Duration duration = const Duration(milliseconds: 1800),
})

Implementation

const SpinKitWanderingCubes({
  Key? key,
  this.color,
  this.shape = BoxShape.rectangle,
  this.size = 50.0,
  this.itemBuilder,
  this.duration = const Duration(milliseconds: 1800),
})  : assert(
        !(itemBuilder is IndexedWidgetBuilder && color is Color) && !(itemBuilder == null && color == null),
        'You should specify either a itemBuilder or a color',
      ),
      offset = size * 0.75,
      super(key: key);