toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final advancedSettings = this.advancedSettings;
  final defaultValue = this.defaultValue;
  final displayName = this.displayName;
  final entityType = this.entityType;
  final fillBehavior = this.fillBehavior;
  final isList = this.isList;
  final redact = this.redact;
  final required = this.required;
  return {
    'advancedSettings': ?advancedSettings,
    'defaultValue': ?defaultValue,
    'displayName': ?displayName,
    'entityType': ?entityType,
    'fillBehavior': ?fillBehavior,
    'isList': ?isList,
    'redact': ?redact,
    'required': ?required,
  };
}