Underline constructor
Underline({})
Implementation
Underline({
required Mobject mobject,
double buff = SMALL_BUFFER,
double? pathArc,
Vector3 start = RIGHT,
Vector3 end = LEFT,
Color color = WHITE,
}) : super(
start: start,
end: end,
buff: buff,
pathArc: pathArc,
color: color,
) {
matchWidth(mobject);
nextToMobject(mobject, direction: DOWN, buffer: buff);
}