endings property

Endings? get endings

Implementation

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

Implementation

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