toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final few = this.few;
  final many = this.many;
  final one = this.one;
  final other = this.other;
  final two = this.two;
  final zero = this.zero;
  return {
    'few': ?few,
    'many': ?many,
    'one': ?one,
    'other': ?other,
    'two': ?two,
    'zero': ?zero,
  };
}