FinancialChartResponse constructor
FinancialChartResponse({
- String? svgContent,
Implementation
factory FinancialChartResponse({
$core.String? svgContent,
}) {
final result = create();
if (svgContent != null) {
result.svgContent = svgContent;
}
return result;
}