8 lines
191 B
Dart
8 lines
191 B
Dart
abstract class WasmImpl {
|
|
WasmImpl.fromAssets(String path);
|
|
Future<bool> init();
|
|
bool get isReady;
|
|
Future function(String name);
|
|
Future functionParam(String name, dynamic input);
|
|
}
|