copyWith method

EnvVariable copyWith({
  1. Object? name = _acpCopyWithAbsent,
  2. Object? value = _acpCopyWithAbsent,
  3. Object? meta = _acpCopyWithAbsent,
})

Implementation

EnvVariable copyWith({
  Object? name = _acpCopyWithAbsent,
  Object? value = _acpCopyWithAbsent,
  Object? meta = _acpCopyWithAbsent,
}) => EnvVariable(
  name: identical(name, _acpCopyWithAbsent) ? this.name : name as String,
  value: identical(value, _acpCopyWithAbsent) ? this.value : value as String,
  meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);