copyWith method
Implementation
CancelRequestNotification copyWith({
Object? requestId = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => CancelRequestNotification(
requestId: identical(requestId, _acpCopyWithAbsent)
? this.requestId
: requestId as RequestId,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);