Database constructor

const Database({
  1. String name = "sonicdb",
  2. List<Type> entities = const [],
  3. int version = 1,
  4. bool useDeviceProtectedStorage = false,
})

Implementation

const Database(
    {this.name = "sonicdb",
    this.entities = const [],
    this.version = 1,
    this.useDeviceProtectedStorage = false});