toString method

  1. @override
String toString()
override

Gets the debug string representation of the Circle.

Returns a String representing the debug information of the circle.

Implementation

@override
String toString() {
  return 'Circle(center: (${center.x}, ${center.y}), radius: $radius)';
}