copyWith method

SessionUpdateSessionInfoUpdate copyWith({
  1. Object? sessionUpdate = _acpCopyWithAbsent,
  2. Object? title = _acpCopyWithAbsent,
  3. Object? updatedAt = _acpCopyWithAbsent,
  4. Object? meta = _acpCopyWithAbsent,
})

Implementation

SessionUpdateSessionInfoUpdate copyWith({
  Object? sessionUpdate = _acpCopyWithAbsent,
  Object? title = _acpCopyWithAbsent,
  Object? updatedAt = _acpCopyWithAbsent,
  Object? meta = _acpCopyWithAbsent,
}) => SessionUpdateSessionInfoUpdate(
  sessionUpdate: identical(sessionUpdate, _acpCopyWithAbsent)
      ? this.sessionUpdate
      : sessionUpdate as String,
  title: identical(title, _acpCopyWithAbsent)
      ? this.title
      : title as AcpField<String>,
  updatedAt: identical(updatedAt, _acpCopyWithAbsent)
      ? this.updatedAt
      : updatedAt as AcpField<String>,
  meta: identical(meta, _acpCopyWithAbsent)
      ? this.meta
      : meta as AcpField<AcpJsonMap>,
);