colorChannelShift property

ColorChannelShift get colorChannelShift

Settings for color channel shifting.

Implementation

ColorChannelShift get colorChannelShift => _colorChannelShift;
set colorChannelShift (ColorChannelShift value)

Implementation

set colorChannelShift(ColorChannelShift value) {
  if (_colorChannelShift == value) return;

  _colorChannelShift = value;
  notifyListeners();
}