2023-10-14 20:18:37 -04:00
|
|
|
import 'dart:typed_data';
|
|
|
|
|
2022-02-09 09:47:36 -05:00
|
|
|
import 'veilid.dart';
|
2022-02-06 21:18:42 -05:00
|
|
|
|
|
|
|
Veilid getVeilid() => throw UnsupportedError('Cannot create Veilid object');
|
2023-10-14 20:18:37 -04:00
|
|
|
Uint8List convertUint8ListFromJson(dynamic json) =>
|
|
|
|
throw UnsupportedError('Cannot convertUint8ListFromJson');
|
|
|
|
dynamic convertUint8ListToJson(Uint8List data) =>
|
|
|
|
throw UnsupportedError('Cannot convertUint8ListToJson');
|