BlurMatrixAnimate constructor

const BlurMatrixAnimate({
  1. Key? key,
  2. required List<List<Color>> colors,
  3. Duration duration = const Duration(seconds: 3),
})

Implementation

const BlurMatrixAnimate({
  Key? key,
  required this.colors,
  this.duration: const Duration(seconds: 3),
})  : assert(colors.length > 0, 'The color matrix must be at least 2x1'),
      super(key: key);