toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dateLimits = this.dateLimits;
final integerLimits = this.integerLimits;
final longTextLimits = this.longTextLimits;
final maxDescriptionLength = this.maxDescriptionLength;
final maxDisplayNameLength = this.maxDisplayNameLength;
final maxIdLength = this.maxIdLength;
final selectionLimits = this.selectionLimits;
final textLimits = this.textLimits;
final userLimits = this.userLimits;
return {
'dateLimits': ?dateLimits,
'integerLimits': ?integerLimits,
'longTextLimits': ?longTextLimits,
'maxDescriptionLength': ?maxDescriptionLength,
'maxDisplayNameLength': ?maxDisplayNameLength,
'maxIdLength': ?maxIdLength,
'selectionLimits': ?selectionLimits,
'textLimits': ?textLimits,
'userLimits': ?userLimits,
};
}