toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final extractionHints = this.extractionHints;
  final fields = this.fields;
  final foreignKeys = this.foreignKeys;
  final name = this.name;
  final sourceNodeType = this.sourceNodeType;
  final targetNodeType = this.targetNodeType;
  return {
    'description': ?description,
    'extractionHints': ?extractionHints,
    'fields': ?fields,
    'foreignKeys': ?foreignKeys,
    'name': ?name,
    'sourceNodeType': ?sourceNodeType,
    'targetNodeType': ?targetNodeType,
  };
}