ScoreboardComponent constructor

ScoreboardComponent(
  1. @Attribute('enableUniformWidths') String? enableUniformWidths,
  2. DomService _domService,
  3. ChangeDetectorRef _changeDetector
)

Implementation

ScoreboardComponent(
    @Attribute('enableUniformWidths') String? enableUniformWidths,
    this._domService,
    this._changeDetector) {
  _enableUniformWidths = enableUniformWidths != 'false'; // Defaults to true
}