Error :The method 'update' isn't defined for the type 'DatabaseException'. Error: The method 'delete' isn't defined for the type 'DatabaseException'

Issue With null safety enabled, I’m using the new dart version <2.18.1>. this is my code import ‘dart:async’; import ‘dart:io’; import ‘package:path/path.dart’; import ‘package:path_provider/path_provider.dart’; import ‘package:sqflite/sqflite.dart’; import ‘package:untitled3/product.dart’; class ProductDBHelper{ static final _databaseName = ‘mydb.db’; static final _databaseVersion = 1;

Continue reading