diff --git a/drift/example/example.dart b/drift/example/example.dart index ddf002387..a24297dd4 100644 --- a/drift/example/example.dart +++ b/drift/example/example.dart @@ -30,9 +30,7 @@ Future runApp() async { final db = AppDatabase(executor); await db.transaction(() async { - await db - .into(db.todoItems) - .insert( + await db.into(db.todoItems).insert( TodoItemsCompanion.insert( title: 'This is a test thing', content: 'test', @@ -40,9 +38,7 @@ Future runApp() async { ); await db.transaction(() async { - await db - .into(db.todoItems) - .insert( + await db.into(db.todoItems).insert( TodoItemsCompanion.insert( title: 'This is a test thing in the tx', content: 'test',