PatternView constructor
const
PatternView({})
Implementation
const PatternView({
super.key,
this.matrixX = 3,
this.matrixY = 3,
this.state = PatternState.active,
this.tapRange,
required this.onStart,
required this.onUpdate,
required this.onEnd,
required this.value,
}) : assert(
value.length <= (matrixX * matrixY),
'value length must less than matrixX * matrixY',
);