TBar constructor
TBar({})
Implementation
TBar({
required int x,
required int y,
required int width,
required int height,
TLineType line= TLineType.solidLine,
}) {
_x = x;
_y = y;
_width = width;
_height = height;
_line = line;
}