Line class final

Describes PostgreSQL's geometric type: line.

A line as defined by the linear equation ax + by + c = 0.

See https://www.postgresql.org/docs/current/datatype-geometric.html#DATATYPE-LINE

Annotations
  • @immutable
  • @sealed

Constructors

Line(double a, double b, double c)

Properties

a double
final
b double
final
c double
final
hashCode int
The hash code for this object.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

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