borderBottom property

double? get borderBottom

Implementation

double? get borderBottom {
  var v = borderBottomState?.fromController(this) ?? _borderBottom;
  return v ?? borderVertical ?? borderSize;
}
set borderBottom (double? value)

Implementation

set borderBottom(double? value) => _borderBottom = value;