TradingViewModel constructor

TradingViewModel({
  1. required String screener,
  2. required List<String> symbols,
  3. Intervals interval = Intervals.INTERVAL_1_HOUR,
})

Implementation

TradingViewModel({
  required this.screener,
  required this.symbols,
  this.interval = Intervals.INTERVAL_1_HOUR,
});