copyWith method

UnstructuredCommandInput copyWith({
  1. Object? hint = _acpCopyWithAbsent,
  2. Object? meta = _acpCopyWithAbsent,
})

Implementation

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