tradChineseFormal property

CounterStyle tradChineseFormal
final

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

Implementation

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