copyWith method
ChatUIKitEventAction
copyWith({
- ChatUIKitEventActionType? type,
- String? label,
- TextStyle? style,
- Widget? icon,
- T? onTap()?,
Implementation
ChatUIKitEventAction copyWith({
ChatUIKitEventActionType? type,
String? label,
TextStyle? style,
Widget? icon,
T? Function()? onTap,
}) {
return ChatUIKitEventAction(
actionType: this.actionType,
type: type ?? this.type,
label: label ?? this.label,
style: style ?? this.style,
icon: icon ?? this.icon,
onTap: onTap ?? this.onTap,
);
}