isInitial property

bool get isInitial

Gets or sets whether a default animation is performed on an initial layout.

The default value is true. Changing the value does not affect any ongoing animation. Setting this property does not raise any events.

Implementation

_i2.bool get isInitial => _i4.getProperty(
      this,
      'isInitial',
    );
set isInitial (bool value)

Implementation

set isInitial(_i2.bool value) {
  _i4.setProperty(
    this,
    'isInitial',
    value,
  );
}