toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final degradedSubBlockCount = this.degradedSubBlockCount;
final healthStatus = this.healthStatus;
final healthySubBlockCount = this.healthySubBlockCount;
return {
'degradedSubBlockCount': ?degradedSubBlockCount,
'healthStatus': ?healthStatus,
'healthySubBlockCount': ?healthySubBlockCount,
};
}