rmb method

ChineseRmbCodec rmb({
  1. String prefix = '人民币',
  2. String wholeSuffix = '整',
  3. bool writeWholeSuffixForJiao = false,
})

Creates a Simplified Chinese RMB amount codec.

Implementation

ChineseRmbCodec rmb({
  String prefix = '人民币',
  String wholeSuffix = '整',
  bool writeWholeSuffixForJiao = false,
}) {
  return ChineseRmbCodec(
    prefix: prefix,
    wholeSuffix: wholeSuffix,
    writeWholeSuffixForJiao: writeWholeSuffixForJiao,
  );
}