shortcuts property
Object?
get
shortcuts
Define shortcuts. This will allow typing 1k => 1000, 2m => 2000000
To disable just pass shortcuts: null
as option
@default {k: "000", m: "000000"}
Implementation
_i2.Object? get shortcuts => _i4.getProperty(
this,
'shortcuts',
);
set
shortcuts
(Object? value)
Implementation
set shortcuts(_i2.Object? value) {
_i4.setProperty(
this,
'shortcuts',
value ?? _i6.undefined,
);
}