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