toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final etag = this.etag;
  final fieldId = this.fieldId;
  final fieldName = this.fieldName;
  final fieldType = this.fieldType;
  final indexed = this.indexed;
  final kind = this.kind;
  final multiValued = this.multiValued;
  final numericIndexingSpec = this.numericIndexingSpec;
  final readAccessType = this.readAccessType;
  return {
    'displayName': ?displayName,
    'etag': ?etag,
    'fieldId': ?fieldId,
    'fieldName': ?fieldName,
    'fieldType': ?fieldType,
    'indexed': ?indexed,
    'kind': ?kind,
    'multiValued': ?multiValued,
    'numericIndexingSpec': ?numericIndexingSpec,
    'readAccessType': ?readAccessType,
  };
}