MaterialExpansionPanel constructor

MaterialExpansionPanel(
  1. NgZone _ngZone,
  2. ChangeDetectorRef _changeDetector,
  3. DomService _domService,
  4. @Attribute('shouldExpandOnLeft') String? expandOnLeft,
  5. @Attribute('forceContentWhenClosed') String? forceContent,
)

Implementation

MaterialExpansionPanel(
    this._ngZone,
    this._changeDetector,
    this._domService,
    @Attribute('shouldExpandOnLeft') String? expandOnLeft,
    @Attribute('forceContentWhenClosed') String? forceContent)
    : shouldExpandOnLeft = expandOnLeft != null,
      forceContentWhenClosed = forceContent != null;