operator + method
- BorderRadiusDirectional other
Returns the sum of two BorderRadiusDirectional objects.
Implementation
BorderRadiusDirectional operator +(BorderRadiusDirectional other) {
return BorderRadiusDirectional.only(
topStart: topStart + other.topStart,
topEnd: topEnd + other.topEnd,
bottomStart: bottomStart + other.bottomStart,
bottomEnd: bottomEnd + other.bottomEnd,
);
}