mirror of
https://github.com/foss42/apidash.git
synced 2025-12-04 11:57:39 +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();
|
|
}
|