toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final averageLength = this.averageLength;
  final maxLength = this.maxLength;
  final minLength = this.minLength;
  return {
    'averageLength': ?averageLength,
    'maxLength': ?maxLength,
    'minLength': ?minLength,
  };
}