I'm a beginner in flutter, I want to use SQLite database using sqflite package in my Flutter App,
when I use import 'package:path_provider/path_provider.dart';I have a compilation error saying Target of URI doesn't exist: 'package:path_provider/path_provider.dart'. Try creating the file referenced by the URI, or Try using a URI for a file that does exist.
and when I use
io.Directory documentDirectory = await getApplicationDocumentsDirectory();
I have a compilation error saying
Try correcting the name to the name of an existing method, or defining a method named 'getApplicationDocumentsDirectory'.```