mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
10 lines
353 B
Dart
10 lines
353 B
Dart
import 'dart:typed_data';
|
|
|
|
import 'veilid.dart';
|
|
|
|
Veilid getVeilid() => throw UnsupportedError('Cannot create Veilid object');
|
|
Uint8List convertUint8ListFromJson(dynamic json) =>
|
|
throw UnsupportedError('Cannot convertUint8ListFromJson');
|
|
dynamic convertUint8ListToJson(Uint8List data) =>
|
|
throw UnsupportedError('Cannot convertUint8ListToJson');
|