showK method

String showK({
  1. String? locale,
})

This is a shorthand for show(k: true).

It be possible to change the locale parameter.

(Using 'it_IT' locale, for example, it will write the money representation using a no-break space between the amount and the currency).

Implementation

String showK({
  String? locale,
}) =>
    show(
      k: true,
      locale: locale,
    );