ProtocolVersion.fromJson constructor

ProtocolVersion.fromJson(
  1. Object? json
)

Decodes a wire number.

Implementation

factory ProtocolVersion.fromJson(Object? json) =>
    ProtocolVersion(decodeAcpInteger(json));