bottomBorderWidth property

double get bottomBorderWidth

Returns the component's bottom border width.

Implementation

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