From 1c4ab94f00d65a50a90c1da504c4a105e9d89e9f Mon Sep 17 00:00:00 2001 From: Sander Kersten Date: Sat, 26 Jun 2021 15:27:31 +0200 Subject: [PATCH] Format generated code in example --- example/bin/main.g.dart | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/example/bin/main.g.dart b/example/bin/main.g.dart index efb5000..fb49d07 100644 --- a/example/bin/main.g.dart +++ b/example/bin/main.g.dart @@ -129,8 +129,7 @@ abstract class $Bar { } @override - String toString() => - "Bar(foos: $foos, foo: $foo, driver: $driver, cache: $cache)"; + String toString() => "Bar(foos: $foos, foo: $foo, driver: $driver, cache: $cache)"; @override // ignore: avoid_equals_and_hash_code_on_mutable_classes @@ -219,9 +218,7 @@ abstract class $Baz { @override // ignore: avoid_equals_and_hash_code_on_mutable_classes bool operator ==(Object other) => - other is Baz && - other.runtimeType == runtimeType && - prefixedField == other.prefixedField; + other is Baz && other.runtimeType == runtimeType && prefixedField == other.prefixedField; @override // ignore: avoid_equals_and_hash_code_on_mutable_classes @@ -242,7 +239,6 @@ class Baz$Change { class Baz$ { static final prefixedField = Lens( (prefixedFieldContainer) => prefixedFieldContainer.prefixedField, - (prefixedFieldContainer, prefixedField) => - prefixedFieldContainer.copyWith(prefixedField: prefixedField), + (prefixedFieldContainer, prefixedField) => prefixedFieldContainer.copyWith(prefixedField: prefixedField), ); }