Drawer constructor

Drawer({
  1. DslWidget? child,
  2. double? elevation,
  3. double? width,
  4. String? name,
  5. Object? visible,
})

Implementation

Drawer({
  this.child,
  this.elevation,
  this.width,
  String? name,
  Object? visible,
}) : super(name: name, visible: _normalizeVisibility(visible));