copyWith method
Implementation
A11yServiceEvent copyWith({
String? packageName,
String? className,
String? text,
String? description,
}) {
return A11yServiceEvent(
packageName: packageName ?? this.packageName,
className: className ?? this.className,
text: text ?? this.text,
description: description ?? this.description,
);
}