copyWith method

CancelRequestNotification copyWith({
  1. Object? requestId = _acpCopyWithAbsent,
  2. Object? meta = _acpCopyWithAbsent,
})

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?,
);