customBorder property

ShapeBorder? customBorder

The ink's optional custom border.

Implementation

ShapeBorder? get customBorder => _customBorder;
void customBorder=(ShapeBorder? value)

Implementation

set customBorder(ShapeBorder? value) {
  if (value == _customBorder) {
    return;
  }
  _customBorder = value;
  controller.markNeedsPaint();
}