From 52202703b2e75b88754da9eb6737f92d6d2b620d Mon Sep 17 00:00:00 2001 From: GIancarlo Buenaflor Date: Fri, 14 Feb 2025 14:11:35 +0100 Subject: [PATCH] formatting --- drift/example/example.dart | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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',