CollectionScaleTransition constructor

CollectionScaleTransition({
  1. required List<Widget> children,
  2. double end = 2.0,
  3. bool repeat = true,
})

Creates transiton widget.

children is requied and must not be null. end property has default value of 2.0.

Implementation

CollectionScaleTransition({
  required this.children,
  this.end = 2.0,
  this.repeat = true,
}) : assert(children != null);