granularity property

Granularity? get granularity

The type of input to be split

Implementation

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

Implementation

set granularity(_i3.Granularity? value) {
  _i5.setProperty(
    this,
    'granularity',
    value?.name ?? _i4.undefined,
  );
}