Pattern constructor

const Pattern({
  1. Key? key,
  2. required List<int> state,
  3. required Widget child,
  4. required int dimension,
  5. Color? patternBackgroundColor,
})

Implementation

const Pattern(
    {super.key,
    required this.state,
    required this.child,
    required this.dimension,
    this.patternBackgroundColor});