CelmCoverage.fromJson constructor
Implementation
factory CelmCoverage.fromJson(Map<String, dynamic> json) => CelmCoverage(
scope: _requireString(json, 'CelmCoverage', 'scope'),
depth: CelmDepth.fromString(
_requireString(json, 'CelmCoverage', 'depth'),
),
);