importCAR method

Future<void> importCAR(
  1. Uint8List carFile
)

Imports a CAR (Content Addressable Archive) file.

Implementation

Future<void> importCAR(Uint8List carFile) async {
  try {
    await _container.get<DatastoreHandler>().importCAR(carFile);
  } catch (e) {
    // print('Error importing CAR file: $e');
    rethrow;
  }
}