greedy property
bool?
get
greedy
Toggle to allocate as much possible or the opposite. Non-greedy repeat function. With the non-greedy option
set to false
, you can specify *
as repeat. This makes an endless repeat.
@default false
Implementation
_i2.bool? get greedy => _i4.getProperty(
this,
'greedy',
);
set
greedy
(bool? value)
Implementation
set greedy(_i2.bool? value) {
_i4.setProperty(
this,
'greedy',
value ?? _i6.undefined,
);
}