copyWith method

KillTerminalResponse copyWith({
  1. Object? meta = _acpCopyWithAbsent,
})

Implementation

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