toJson method
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,
};
}