toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final address = this.address;
  final diskUsed = this.diskUsed;
  final memoryRemaining = this.memoryRemaining;
  final memoryUsed = this.memoryUsed;
  final offHeapMemoryRemaining = this.offHeapMemoryRemaining;
  final offHeapMemoryUsed = this.offHeapMemoryUsed;
  final onHeapMemoryRemaining = this.onHeapMemoryRemaining;
  final onHeapMemoryUsed = this.onHeapMemoryUsed;
  return {
    'address': ?address,
    'diskUsed': ?diskUsed,
    'memoryRemaining': ?memoryRemaining,
    'memoryUsed': ?memoryUsed,
    'offHeapMemoryRemaining': ?offHeapMemoryRemaining,
    'offHeapMemoryUsed': ?offHeapMemoryUsed,
    'onHeapMemoryRemaining': ?onHeapMemoryRemaining,
    'onHeapMemoryUsed': ?onHeapMemoryUsed,
  };
}