target property
String
get
target
The LLVM target triple, which is the combination
of ${arch}-${vendor}-${os}
and represent the specific build target that
the current runtime was built for.
Implementation
_i2.String get target => _i3.getProperty(
this,
'target',
);
set
target
(String value)
Implementation
set target(_i2.String value) {
_i3.setProperty(
this,
'target',
value,
);
}