SmaIndicator<T, D> constructor

SmaIndicator<T, D>(
  1. {bool? isVisible,
  2. String? xAxisName,
  3. String? yAxisName,
  4. String? seriesName,
  5. List<double>? dashArray,
  6. double? animationDuration,
  7. double? animationDelay,
  8. List<T>? dataSource,
  9. ChartValueMapper<T, D>? xValueMapper,
  10. ChartValueMapper<T, num>? highValueMapper,
  11. ChartValueMapper<T, num>? lowValueMapper,
  12. ChartValueMapper<T, num>? openValueMapper,
  13. ChartValueMapper<T, num>? closeValueMapper,
  14. String? name,
  15. bool? isVisibleInLegend,
  16. LegendIconType? legendIconType,
  17. String? legendItemText,
  18. Color? signalLineColor,
  19. double? signalLineWidth,
  20. int? period,
  21. String? valueField,
  22. ChartIndicatorRenderCallback? onRenderDetailsUpdate}
)

Creating an argument constructor of SmaIndicator class.

Implementation

SmaIndicator(
    {bool? isVisible,
    String? xAxisName,
    String? yAxisName,
    String? seriesName,
    List<double>? dashArray,
    double? animationDuration,
    double? animationDelay,
    List<T>? dataSource,
    ChartValueMapper<T, D>? xValueMapper,
    ChartValueMapper<T, num>? highValueMapper,
    ChartValueMapper<T, num>? lowValueMapper,
    ChartValueMapper<T, num>? openValueMapper,
    ChartValueMapper<T, num>? closeValueMapper,
    String? name,
    bool? isVisibleInLegend,
    LegendIconType? legendIconType,
    String? legendItemText,
    Color? signalLineColor,
    double? signalLineWidth,
    int? period,
    String? valueField,
    ChartIndicatorRenderCallback? onRenderDetailsUpdate})
    : valueField = (valueField ?? 'close').toLowerCase(),
      super(
          isVisible: isVisible,
          xAxisName: xAxisName,
          yAxisName: yAxisName,
          seriesName: seriesName,
          dashArray: dashArray,
          animationDuration: animationDuration,
          animationDelay: animationDelay,
          dataSource: dataSource,
          xValueMapper: xValueMapper,
          highValueMapper: highValueMapper,
          lowValueMapper: lowValueMapper,
          openValueMapper: openValueMapper,
          closeValueMapper: closeValueMapper,
          name: name,
          isVisibleInLegend: isVisibleInLegend,
          legendIconType: legendIconType,
          legendItemText: legendItemText,
          signalLineColor: signalLineColor,
          signalLineWidth: signalLineWidth,
          period: period,
          onRenderDetailsUpdate: onRenderDetailsUpdate);