AnalyticsEnableParams.fromJson constructor
AnalyticsEnableParams.fromJson(
- JsonDecoder jsonDecoder,
- String jsonPath,
- Object? json
)
Implementation
factory AnalyticsEnableParams.fromJson(
JsonDecoder jsonDecoder, String jsonPath, Object? json) {
json ??= {};
if (json is Map) {
bool value;
if (json.containsKey('value')) {
value = jsonDecoder.decodeBool('$jsonPath.value', json['value']);
} else {
throw jsonDecoder.mismatch(jsonPath, 'value');
}
return AnalyticsEnableParams(value);
} else {
throw jsonDecoder.mismatch(jsonPath, 'analytics.enable params', json);
}
}