matrix property

Implementation

_i3.VideoMatrixCoefficients? get matrix => switch (_i4.getProperty(
      this,
      'matrix',
    )) {
      _i2.String name =>
        _i3.VideoMatrixCoefficientsOptions.values.byName(name),
      _ => null
    };
set matrix (VideoMatrixCoefficients? value)

Implementation

set matrix(_i3.VideoMatrixCoefficients? value) {
  _i4.setProperty(
    this,
    'matrix',
    value?.name ?? _i6.undefined ?? _i6.undefined,
  );
}