mirror of
https://github.com/foss42/apidash.git
synced 2025-12-02 02:39:19 +08:00
12 lines
202 B
Dart
12 lines
202 B
Dart
import 'package:flutter_js/flutter_js.dart';
|
|
|
|
late JavascriptRuntime jsRuntime;
|
|
|
|
void initializeJsRuntime() {
|
|
jsRuntime = getJavascriptRuntime();
|
|
}
|
|
|
|
void disposeJsRuntime() {
|
|
jsRuntime.dispose();
|
|
}
|