resolved method
Implementation
w.Border resolved(ElbeThemeData t) {
final resolvedWidth = width ?? t.geometry.rem(t.geometry.borderWidth);
return w.Border.all(
color: resolvedWidth > 0
? color ?? t.color.selected.border ?? Colors.transparent
: Colors.transparent,
width: resolvedWidth,
style: style ?? t.geometry.borderStyle,
strokeAlign: strokeAlign ?? t.geometry.borderAlign);
}