PatternPaint constructor

const PatternPaint({
  1. Key? key,
  2. required Pattern pattern,
  3. Widget? child,
})

Creates a pattern paint widget.

Implementation

const PatternPaint({
  super.key,
  required this.pattern,
  this.child,
});