toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attributes = this.attributes;
  final key = this.key;
  final preprocessingConfig = this.preprocessingConfig;
  final uri = this.uri;
  return {
    'attributes': ?attributes,
    'key': ?key,
    'preprocessingConfig': ?preprocessingConfig,
    'uri': ?uri,
  };
}