FinancialChartResponse constructor

FinancialChartResponse({
  1. String? svgContent,
})

Implementation

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