nDays method

String nDays(
  1. int n
)

Implementation

String nDays(int n) => isChinese ? '$n天' : '$n day${n > 1 ? 's' : ''}';