axis property

Axis? get axis

Implementation

_i4.Axis? get axis => switch (_i6.getProperty(
      this,
      'axis',
    )) {
      _i2.String name => _i4.Axis.values.byName(name),
      _ => null
    };
set axis (Axis? value)

Implementation

set axis(_i4.Axis? value) {
  _i6.setProperty(
    this,
    'axis',
    value?.name ?? _i5.undefined,
  );
}