The webOnlyAssetManager getter is deprecated and will be removed in a future release. Please use assetManager from
dart:ui_web instead.
Fluttertoast.showToast( msg: 'Success', toastLength: Toast.LENGTH_SHORT, gravity: ToastGravity.CENTER, backgroundColor: Colors.green, textColor: Colors.white, fontSize: 16.0, );
I am getting a warning: The webOnlyAssetManager getter is deprecated and will be removed in a future release. Please use assetManager from dart:ui_web instead
Well, the problem has to do with the package (
flutterToast) that you're using.If you inspect the source code. You'll see that they're using
webOnlyAssetManager:which is deprecated. You'll have to wait for the package maintainer to release a new version.