copyWith method

SessionConfigValueId copyWith({
  1. Object? value = _acpCopyWithAbsent,
})

Implementation

SessionConfigValueId copyWith({Object? value = _acpCopyWithAbsent}) =>
    SessionConfigValueId(
      identical(value, _acpCopyWithAbsent) ? this.value : value as String,
    );