TuneAdjustmentMatrix class

A class representing the adjustment matrix for a tune adjustment item.

This class holds the adjustment id, the value of the adjustment, and the corresponding transformation matrix that applies the adjustment.

Constructors

TuneAdjustmentMatrix({required String id, required double value, required List<double> matrix})
Creates a TuneAdjustmentMatrix with the given id, value, and matrix.
TuneAdjustmentMatrix.fromMap(Map<String, dynamic> map)
Creates a TuneAdjustmentMatrix instance from a Map representation.
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
id String
The unique identifier for the tune adjustment.
final
matrix List<double>
The transformation matrix associated with the tune adjustment.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value double
The value of the tune adjustment.
final

Methods

copy() TuneAdjustmentMatrix
Creates a copy of this TuneAdjustmentMatrix instance with the same values.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toMap() Map<String, dynamic>
Converts this TuneAdjustmentMatrix instance into a Map representation.
toString() String
A string representation of this object.
inherited

Operators

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