toBytesHex method

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

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

See toBytes for more information.

Implementation

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