toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final endKey = this.endKey;
final endTime = this.endTime;
final name = this.name;
final nodeCpuUsagePercent = this.nodeCpuUsagePercent;
final startKey = this.startKey;
final startTime = this.startTime;
final tableName = this.tableName;
return {
'endKey': ?endKey,
'endTime': ?endTime,
'name': ?name,
'nodeCpuUsagePercent': ?nodeCpuUsagePercent,
'startKey': ?startKey,
'startTime': ?startTime,
'tableName': ?tableName,
};
}