interstitial property

Interstitial? get interstitial

Implementation

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

Implementation

set interstitial(_i3.Interstitial? value) {
  _i5.setProperty(
    this,
    'interstitial',
    value?.name ?? _i7.undefined,
  );
}