Quadruple<A, B, C, D> class final

A class representing a quadruple of values, which are immutable and extend the Equatable class.

Inheritance
Annotations
  • @immutable

Constructors

Quadruple(A first, B second, C third, D fourth)
Create a new instance of Quadruple with the given values.
const

Properties

first → A
The first value in the quadruple.
final
fourth → D
The fourth value in the quadruple.
final
hashCode int
The hash code for this object.
no setterinherited
props List<Object?>
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
second → B
The second value in the quadruple.
final
third → C
The third value in the quadruple.
final

Methods

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

Operators

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