copyWith method

SessionUpdateConfigOptionUpdate copyWith({
  1. Object? sessionUpdate = _acpCopyWithAbsent,
  2. Object? configOptions = _acpCopyWithAbsent,
  3. Object? meta = _acpCopyWithAbsent,
})

Implementation

SessionUpdateConfigOptionUpdate copyWith({
  Object? sessionUpdate = _acpCopyWithAbsent,
  Object? configOptions = _acpCopyWithAbsent,
  Object? meta = _acpCopyWithAbsent,
}) => SessionUpdateConfigOptionUpdate(
  sessionUpdate: identical(sessionUpdate, _acpCopyWithAbsent)
      ? this.sessionUpdate
      : sessionUpdate as String,
  configOptions: identical(configOptions, _acpCopyWithAbsent)
      ? this.configOptions
      : configOptions as List<SessionConfigOption>,
  meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);