save static method

ByteBuffer save(
  1. BicycleRoute route
)

Returns a route's serialized representation. Returns an empty array if there are any errors.

Implementation

static typed_data.ByteBuffer save(
    transport_bicycle_route.BicycleRoute route) {
  return _save(
    route,
  );
}