deserialize static method

Route? deserialize(
  1. Uint8List routeData
)

Creates route from the given binary data.

Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.

  • routeData The binary of a serialized route.

Returns Route?. The route object restored from the binary data.

Implementation

static Route? deserialize(Uint8List routeData) => $prototype.deserialize(routeData);