customBorder property
The ink's optional custom border.
Implementation
ShapeBorder? get customBorder => _customBorder;
Implementation
set customBorder(ShapeBorder? value) {
if (value == _customBorder) {
return;
}
_customBorder = value;
controller.markNeedsPaint();
}