isProtocolVersionSupported method

Future<bool> isProtocolVersionSupported(
  1. SemanticVersion supportedVersion
)

Implementation

Future<bool> isProtocolVersionSupported(
  SemanticVersion supportedVersion,
) async {
  _protocolVersion = await serviceClient.getVersion();
  return isProtocolVersionSupportedNow(supportedVersion);
}