copyWith method

ConfigOptionUpdate copyWith({
  1. Object? configOptions = _acpCopyWithAbsent,
  2. Object? meta = _acpCopyWithAbsent,
})

Implementation

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