toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowedCharacterCount = this.allowedCharacterCount;
  final limitType = this.limitType;
  final remainingCharacterCount = this.remainingCharacterCount;
  return {
    'allowedCharacterCount': ?allowedCharacterCount,
    'limitType': ?limitType,
    'remainingCharacterCount': ?remainingCharacterCount,
  };
}