toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final error = this.error;
  final lastErrorTime = this.lastErrorTime;
  final lastReplicationTime = this.lastReplicationTime;
  final softFailoverStartTime = this.softFailoverStartTime;
  return {
    'error': ?error,
    'lastErrorTime': ?lastErrorTime,
    'lastReplicationTime': ?lastReplicationTime,
    'softFailoverStartTime': ?softFailoverStartTime,
  };
}