read method

VectorTile read(
  1. Uint8List bytes
)

Implementation

VectorTile read(Uint8List bytes) {
  return profileSync('ReadTile', () {
    return VectorTile.fromBytes(bytes: bytes);
  });
}