circle method

GraphicsCommandCircle circle(
  1. num x,
  2. num y,
  3. num radius, [
  4. bool antiClockwise = false,
])

Draw a circle at x and y

Implementation

GraphicsCommandCircle circle(num x, num y, num radius,
    [bool antiClockwise = false]) {
  final command = GraphicsCommandCircle(x, y, radius, antiClockwise);
  addCommand(command);
  return command;
}