Percentiles.fromJson constructor

Percentiles.fromJson(
  1. Map json_
)

Implementation

Percentiles.fromJson(core.Map json_)
    : this(
        p75: json_.containsKey('p75') ? json_['p75'] : null,
      );