args property
Object?
get
args
The arguments to be used in the localized string. As an array, the index of the argument is used to match the template placeholder in the localized string. As a Record, the key is used to match the template placeholder in the localized string.
Implementation
_i2.Object? get args => _i3.getProperty(
this,
'args',
);
set
args
(Object? value)
Implementation
set args(_i2.Object? value) {
_i3.setProperty(
this,
'args',
value ?? _i4.undefined,
);
}