createTable method Null safety

void createTable()

Creates the BackupRepository.table if it does not exist.

Implementation

void createTable() async {
  _db.execute('''
    CREATE TABLE IF NOT EXISTS $table (
      $columnPath TEXT NOT NULL,
      $columnSignature BLOB,
      $columnTimestamp INTEGER
    );
  ''');
}