openReadOnlyDatabase function

Future<Database> openReadOnlyDatabase(
  1. String path
)

Open the database at a given path in read only mode

Implementation

Future<Database> openReadOnlyDatabase(String path) =>
    openDatabase(path, readOnly: true);