copyWith method
Implementation
$FespMenuItemButtonData copyWith({
Widget? child,
void Function()? onPressed,
}) {
return $FespMenuItemButtonData(
child: child ?? this.child,
onPressed: onPressed ?? this.onPressed,
);
}
$FespMenuItemButtonData copyWith({
Widget? child,
void Function()? onPressed,
}) {
return $FespMenuItemButtonData(
child: child ?? this.child,
onPressed: onPressed ?? this.onPressed,
);
}