copyWith method
Implementation
AvailableCommandInputUnstructured copyWith({
Object? hint = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => AvailableCommandInputUnstructured(
hint: identical(hint, _acpCopyWithAbsent) ? this.hint : hint as String,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);