toJson method
Implementation
Map<String, dynamic> toJson() {
return {
'logEntryPoolSize': logEntryPoolSize,
'logEntryAllocations': logEntryAllocations,
'logEntryReuses': logEntryReuses,
'logEventPoolSize': logEventPoolSize,
'logEventAllocations': logEventAllocations,
'logEventReuses': logEventReuses,
'stringBufferPoolSize': stringBufferPoolSize,
'stringBufferAllocations': stringBufferAllocations,
'stringBufferReuses': stringBufferReuses,
'contextMapPoolSize': contextMapPoolSize,
'contextMapAllocations': contextMapAllocations,
'contextMapReuses': contextMapReuses,
'totalAllocations': totalAllocations,
'totalReuses': totalReuses,
'reuseRate': reuseRate,
'efficiencyScore': efficiencyScore,
};
}