copyWith method
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?,
);