create property
bool?
get
create
Sets the option to allow creating a new file, if one doesn't already exist at the specified path. Requires write or append access to be used.
@default {false}
Implementation
_i2.bool? get create => _i3.getProperty(
this,
'create',
);
set
create
(bool? value)
Implementation
set create(_i2.bool? value) {
_i3.setProperty(
this,
'create',
value ?? _i6.undefined,
);
}