VersionInformation constructor
VersionInformation({})
Creates version information for the transport parameter.
chosenVersion is the negotiated QUIC version.
availableVersions lists versions the endpoint supports.
otherVersions may contain reserved/greased versions.
Implementation
VersionInformation({
required this.chosenVersion,
required this.availableVersions,
this.otherVersions = const [],
});