copyWith method

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

Implementation

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