BlurMatrix constructor

const BlurMatrix({
  1. Key? key,
  2. required List<List<Color>> colors,
})

Implementation

const BlurMatrix({
  Key? key,
  required this.colors,
}) : super(key: key);