Importing JS sources into Flutter Web projects.
Import:
JSImport.import(
sources: [
"asset/app.js",
"https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js",
],
);
Is imported:
JSImport.isImported(source: "asset/app.js");
For more details see example project.
And feel free to open an issue if you find any bugs or errors or suggestions.