getDropdownDecoration method
Implementation
BoxDecoration getDropdownDecoration(ColorScheme theme) {
return BoxDecoration(
borderRadius: BorderRadius.circular(8),
border: Border.all(color: theme.outline),
color: theme.surface,
boxShadow: [BoxShadow(color: theme.shadow, blurRadius: 12, spreadRadius: 0)],
);
}