DropdownHeadSkeleton constructor

const DropdownHeadSkeleton({
  1. required Widget title,
  2. Widget? icon,
  3. Decoration? decoration,
  4. EdgeInsets padding = const EdgeInsets.symmetric(vertical: 16, horizontal: 8),
  5. double betweenSpace = 8,
})

Implementation

const DropdownHeadSkeleton({
  required this.title,
  this.icon,
  this.decoration,
  this.padding = const EdgeInsets.symmetric(vertical: 16, horizontal: 8),
  this.betweenSpace = 8
});