CompletionReport.fromJson constructor
Implementation
factory CompletionReport.fromJson(Map<String, dynamic> json) {
return CompletionReport(
enabled: json['Enabled'] as bool,
format: (json['Format'] as String?)?.toReportFormat(),
path: json['Path'] as String?,
scope: (json['Scope'] as String?)?.toReportScope(),
);
}