toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final customFeatures = this.customFeatures;
final name = this.name;
final referenceColumns = this.referenceColumns;
final referenceTable = this.referenceTable;
final tableColumns = this.tableColumns;
final tableName = this.tableName;
final type = this.type;
return {
'customFeatures': ?customFeatures,
'name': ?name,
'referenceColumns': ?referenceColumns,
'referenceTable': ?referenceTable,
'tableColumns': ?tableColumns,
'tableName': ?tableName,
'type': ?type,
};
}