toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deprecated = this.deprecated;
  final displayName = this.displayName;
  final groupDisplayName = this.groupDisplayName;
  final parent = this.parent;
  final repeatable = this.repeatable;
  final valueMetadata = this.valueMetadata;
  final valueType = this.valueType;
  return {
    'deprecated': ?deprecated,
    'displayName': ?displayName,
    'groupDisplayName': ?groupDisplayName,
    'parent': ?parent,
    'repeatable': ?repeatable,
    'valueMetadata': ?valueMetadata,
    'valueType': ?valueType,
  };
}