parse static method

ClassHeapStats? parse(
  1. Map<String, dynamic>? json
)
override

Implementation

static ClassHeapStats? parse(Map<String, dynamic>? json) =>
    json == null ? null : ClassHeapStats._fromJson(json);