WuiDrawerHeader constructor

const WuiDrawerHeader({
  1. Key? key,
  2. ImageProvider<Object>? avatarImage,
  3. String? title,
  4. String? subTitle,
  5. bool? expand = false,
  6. Function? onPressed,
})

Implementation

const WuiDrawerHeader({
  Key? key,
  this.avatarImage,
  this.title,
  this.subTitle,
  this.expand = false,
  this.onPressed
}) : super(key: key);