paramName method

String paramName()

Implementation

String paramName() {
  switch (this) {
    case Quantity.zero:
      return 'zero';
    case Quantity.one:
      return 'one';
    case Quantity.two:
      return 'two';
    case Quantity.few:
      return 'few';
    case Quantity.many:
      return 'many';
    case Quantity.other:
      return 'other';
  }
}