ReportSection.fromJson constructor
Implementation
factory ReportSection.fromJson(Map<String, dynamic> data) =>
switch (data[keyType]) {
AverageSection.sectionType => AverageSection.fromJson(data),
LinearRegressionSection.sectionType =>
LinearRegressionSection.fromJson(data),
_ => throw UnknownJsonTypeError(data[keyType]),
};