channelInterpretation property

ChannelInterpretation? get channelInterpretation

Implementation

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

Implementation

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