rightBorderWidth property

double get rightBorderWidth

Returns the component's right border width.

Implementation

double get rightBorderWidth {
  final strokeWeights = _strokeWeights;
  if (strokeWeights != null) {
    return strokeWeights.right;
  }
  final strokeWeight = _strokeWeight;
  if (strokeWeight != null) {
    return strokeWeight;
  }
  return 0;
}