DropDownMenu<T> constructor Null safety

DropDownMenu<T>(
  1. {Widget? child,
  2. List<T> values = const [],
  3. T? value,
  4. Function? onChanged,
  5. String hint = "선택하세요"}
)

Implementation

DropDownMenu({
  this.child,
  this.values = const [],
  this.value,
  this.onChanged,
  this.hint = "선택하세요",
});