CelmCoverage.fromJson constructor

CelmCoverage.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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