toBytesHex method

String toBytesHex({
  1. BinaryFormat<GeometryContent> format = WKB.geometry,
  2. Endian? endian,
  3. CoordRefSys? crs,
  4. Map<String, dynamic>? options,
})

The binary representation as a hex string of this geometry object, with format applied.

See toBytes for more information.

Implementation

String toBytesHex({
  BinaryFormat<GeometryContent> format = WKB.geometry,
  Endian? endian,
  CoordRefSys? crs,
  Map<String, dynamic>? options,
}) =>
    toBytes(format: format, endian: endian, crs: crs, options: options)
        .toHex();