copyWith method

Terminal copyWith({
  1. Object? terminalId = _acpCopyWithAbsent,
  2. Object? meta = _acpCopyWithAbsent,
})

Implementation

Terminal copyWith({
  Object? terminalId = _acpCopyWithAbsent,
  Object? meta = _acpCopyWithAbsent,
}) => Terminal(
  terminalId: identical(terminalId, _acpCopyWithAbsent)
      ? this.terminalId
      : terminalId as TerminalId,
  meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);