toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final replicatedSourceLastRefreshTime =
this.replicatedSourceLastRefreshTime;
final replicationError = this.replicationError;
final replicationIntervalMs = this.replicationIntervalMs;
final replicationStatus = this.replicationStatus;
final sourceTable = this.sourceTable;
return {
'replicatedSourceLastRefreshTime': ?replicatedSourceLastRefreshTime,
'replicationError': ?replicationError,
'replicationIntervalMs': ?replicationIntervalMs,
'replicationStatus': ?replicationStatus,
'sourceTable': ?sourceTable,
};
}