copyWith method
Implementation
DropdownMenuPosition copyWith({
Alignment? targetAnchor,
Alignment? anchor,
Offset? offset,
}) {
return DropdownMenuPosition(
targetAnchor: targetAnchor ?? this.targetAnchor,
anchor: anchor ?? this.anchor,
offset: offset ?? this.offset,
);
}