SqliteOptions constructor
      const
      SqliteOptions({ 
    
    
- SqliteJournalMode? journalMode = SqliteJournalMode.wal,
- int? journalSizeLimit = 6 * 1024 * 1024,
- SqliteSynchronous? synchronous = SqliteSynchronous.normal,
Implementation
const SqliteOptions(
    {this.journalMode = SqliteJournalMode.wal,
    this.journalSizeLimit = 6 * 1024 * 1024,
    this.synchronous = SqliteSynchronous.normal});