loadJSwithPath method

Future<String> loadJSwithPath(
  1. String path
)

Implementation

Future<String> loadJSwithPath(String path) async {
  _loadJSResult = await rootBundle.loadString(path);
  return _loadJSResult;
}