RsiIndicator<T, D> constructor

RsiIndicator<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>? closeValueMapper,
  13. String? name,
  14. bool? isVisibleInLegend,
  15. LegendIconType? legendIconType,
  16. String? legendItemText,
  17. Color? signalLineColor,
  18. double? signalLineWidth,
  19. int? period,
  20. bool showZones = true,
  21. double overbought = 80,
  22. double oversold = 20,
  23. Color upperLineColor = Colors.red,
  24. double upperLineWidth = 2,
  25. Color lowerLineColor = Colors.green,
  26. double lowerLineWidth = 2,
  27. ChartIndicatorRenderCallback? onRenderDetailsUpdate}
)

Creating an argument constructor of RsiIndicator class.

Implementation

RsiIndicator(
    {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>? closeValueMapper,
    String? name,
    bool? isVisibleInLegend,
    LegendIconType? legendIconType,
    String? legendItemText,
    Color? signalLineColor,
    double? signalLineWidth,
    int? period,
    this.showZones = true,
    this.overbought = 80,
    this.oversold = 20,
    this.upperLineColor = Colors.red,
    this.upperLineWidth = 2,
    this.lowerLineColor = Colors.green,
    this.lowerLineWidth = 2,
    ChartIndicatorRenderCallback? onRenderDetailsUpdate})
    : super(
          isVisible: isVisible,
          xAxisName: xAxisName,
          yAxisName: yAxisName,
          seriesName: seriesName,
          dashArray: dashArray,
          animationDuration: animationDuration,
          animationDelay: animationDelay,
          dataSource: dataSource,
          xValueMapper: xValueMapper,
          highValueMapper: highValueMapper,
          lowValueMapper: lowValueMapper,
          closeValueMapper: closeValueMapper,
          name: name,
          isVisibleInLegend: isVisibleInLegend,
          legendIconType: legendIconType,
          legendItemText: legendItemText,
          signalLineColor: signalLineColor,
          signalLineWidth: signalLineWidth,
          period: period,
          onRenderDetailsUpdate: onRenderDetailsUpdate);