PatternLock constructor Null safety
Creates PatternLock with given params.
Implementation
const PatternLock({
Key? key,
this.dimension = 3,
this.relativePadding = 0.7,
this.selectedColor, // Theme.of(context).primaryColor if null
this.notSelectedColor = Colors.black45,
this.pointRadius = 10,
this.showInput = true,
this.selectThreshold = 25,
this.fillPoints = false,
required this.onInputComplete,
}) : super(key: key);