ZwapTutorialStepContent constructor

ZwapTutorialStepContent({
  1. Widget? leading,
  2. required String title,
  3. String? subtitle,
})

Implementation

ZwapTutorialStepContent({
  Widget? leading,
  required String title,
  String? subtitle,
})  : this._leading = leading,
      this._title = title,
      this._subtitle = subtitle,
      this._isCustomContent = false,
      this._customChild = null;