topBorderWidth property

double get topBorderWidth

Returns the component's top border width.

Implementation

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