AccountDrawerHeader constructor

const AccountDrawerHeader({
  1. ImageProvider<Object>? avatar,
  2. VoidCallback? onTap,
  3. ImageProvider<Object>? backgroundImage,
  4. required String name,
  5. String? text,
  6. Color? color,
})

Implementation

const AccountDrawerHeader({
  this.avatar,
  this.onTap,
  this.backgroundImage,
  required this.name,
  this.text,
  this.color,
});