supportsBatching static method

bool supportsBatching(
  1. String version
)

Whether the negotiated version supports JSON-RPC batching. A bounded legacy set — batching was removed in 2025-06-18 (PR #416), so this is intentionally not an "at least" gate.

Implementation

static bool supportsBatching(String version) =>
    version == v2024_11_05 || version == v2025_03_26;