copyWith method

SessionConfigSelectGroup copyWith({
  1. Object? group = _acpCopyWithAbsent,
  2. Object? name = _acpCopyWithAbsent,
  3. Object? options = _acpCopyWithAbsent,
  4. Object? meta = _acpCopyWithAbsent,
})

Implementation

SessionConfigSelectGroup copyWith({
  Object? group = _acpCopyWithAbsent,
  Object? name = _acpCopyWithAbsent,
  Object? options = _acpCopyWithAbsent,
  Object? meta = _acpCopyWithAbsent,
}) => SessionConfigSelectGroup(
  group: identical(group, _acpCopyWithAbsent)
      ? this.group
      : group as SessionConfigGroupId,
  name: identical(name, _acpCopyWithAbsent) ? this.name : name as String,
  options: identical(options, _acpCopyWithAbsent)
      ? this.options
      : options as List<SessionConfigSelectOption>,
  meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);