Circle class final

A circle struct with center point and radius

Inheritance
Implemented types
Available extensions

Constructors

Circle.new()

Properties

address Pointer<T>

Available on T, provided by the StructAddress extension

The memory address of the underlying data.
no setter
center Point
The center point of the circle
getter/setter pair
debugFields Map<String, dynamic>
Gets the debug fields for printing.
no setteroverride
hashCode int
The hash code for this object.
no setterinherited
radius double
The radius of the circle
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
structSize int
Gets the size of the struct in bytes.
no setteroverride

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Converts the Circle to a JSON map.
override
toString() String
Gets the debug string representation of the Circle.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

alloc() Pointer<Circle>
Allocates memory for a Circle instance.
create() Circle
Creates a Circle instance.
override