currencyDisplay property

String? get currencyDisplay

How to display the currency in currency formatting. It is only used when [Style] has the value "currency". The default is "symbol".

"symbol" to use a localized currency symbol such as €,

"code" to use the ISO currency code,

"name" to use a localized currency name such as "dollar"

Implementation

_i2.String? get currencyDisplay => _i5.getProperty(
      this,
      'currencyDisplay',
    );
set currencyDisplay (String? value)

Implementation

set currencyDisplay(_i2.String? value) {
  _i5.setProperty(
    this,
    'currencyDisplay',
    value ?? _i4.undefined,
  );
}