toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final database = this.database;
final schema = this.schema;
final table = this.table;
final type = this.type;
return {
'database': ?database,
'schema': ?schema,
'table': ?table,
'type': ?type,
};
}