determinant property

double get determinant

Returns the determinant of this matrix.

Implementation

double get determinant =>
    a * e * i + b * f * g + c * d * h - a * f * h - b * d * i - c * e * g;