supportsBatching static method

bool supportsBatching(
  1. String version
)

Whether the negotiated version supports JSON-RPC batching. Removed in 2025-06-18 (PR #416).

Implementation

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