invert method

  1. @override
CircleShape invert()
override

invert is a function that returns a new CircleShape that invert the shape.

Implementation

@override
CircleShape invert() {
  return CircleShape();
}