rlSetLineWidth method

void rlSetLineWidth(
  1. num width
)

Set the line drawing width

Implementation

void rlSetLineWidth(
  num width,
) => run(
  () => _debugLabels.rlSetLineWidth(width),
  () => _flat.rlSetLineWidth(
    width.toDouble(),
  ),
);