type property

Type? type

Implementation

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

Implementation

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