type property

TypeOptions get type

If the symbolic link should be either a file or directory. This option only applies to Windows and is ignored on other operating systems.

Implementation

_i4.TypeOptions get type => _i4.TypeOptions.values.byName(_i3.getProperty(
      this,
      'type',
    ));
set type (TypeOptions value)

Implementation

set type(_i4.TypeOptions value) {
  _i3.setProperty(
    this,
    'type',
    value.name,
  );
}