decodeSRIDHex static method

int? decodeSRIDHex(
  1. String bytesHex
)

Decodes an optional SRID from bytesHex (as a hex string) representing Extended WKB (EWKB) data.

Returns null if SRID is not available.

Implementation

static int? decodeSRIDHex(String bytesHex) =>
    decodeSRID(Uint8ListUtils.fromHex(bytesHex));