copyWith method
Implementation
DropdownMenuItems copyWith({String? lable, String? value}) {
return DropdownMenuItems(
lable: lable ?? this.lable,
value: value ?? this.value,
);
}
DropdownMenuItems copyWith({String? lable, String? value}) {
return DropdownMenuItems(
lable: lable ?? this.lable,
value: value ?? this.value,
);
}