openReadOnlyDatabase function
Open the database at a given path in read only mode
Implementation
Future<Database> openReadOnlyDatabase(String path, {String? password}) =>
openDatabase(path, readOnly: true, password: password);
Open the database at a given path in read only mode
Future<Database> openReadOnlyDatabase(String path, {String? password}) =>
openDatabase(path, readOnly: true, password: password);