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