sync method

Future<void> sync(
  1. String path,
  2. Uint8List data
)

Implementation

Future<void> sync(String path, Uint8List data) async {
  final normalizedPath = _normalizeSyncPath(path);
  await room.sendRequest("room.sync", {"path": normalizedPath}, data: data);
}