copyWith method

Plan copyWith({
  1. Object? entries = _acpCopyWithAbsent,
  2. Object? meta = _acpCopyWithAbsent,
})

Implementation

Plan copyWith({
  Object? entries = _acpCopyWithAbsent,
  Object? meta = _acpCopyWithAbsent,
}) => Plan(
  entries: identical(entries, _acpCopyWithAbsent)
      ? this.entries
      : entries as List<PlanEntry>,
  meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);