simpChineseFormal property

CounterStyle simpChineseFormal
final

Simplified Chinese formal numbering (e.g. 壹仟壹佰壹拾壹)

Implementation

static final simpChineseFormal = CounterStyle.defineCustomAlgorithm(
    name: 'simp-chinese-formal',
    algorithm: (count) => _chineseAlgorithm(count, 'simp-chinese-formal'),
    suffix: '、',
    range: IntRange(min: -9999, max: 9999),
    fallback: 'cjk-decimal',
    negative: '\u8d1f' // 负
    );