File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -103,10 +103,10 @@ class ArtemisCustomTypeBuilder implements Builder {
103103 'List<$dartType ?> fromGraphQLList${graphQlType }NullableToDartList${dartType }Nullable(List<Object?> v) => v.map((e) => fromGraphQL${graphQlType }NullableToDart${dartType }Nullable(e as String?)).toList();\n '
104104 'List<String?> fromDartList${dartType }NullableToGraphQLList${graphQlType }Nullable(List<$dartType ?> v) => v.map((e) => fromDart${dartType }NullableToGraphQL${graphQlType }Nullable(e)).toList();\n '
105105 'List<$dartType ?>? fromGraphQLListNullable${graphQlType }NullableToDartListNullable${dartType }Nullable(List<Object?>? v) => v?.map((e) => fromGraphQL${graphQlType }NullableToDart${dartType }Nullable(e as String?)).toList();\n '
106- 'List<String?>? fromDartListNullable${dartType }NullableToGraphQLListNullable${graphQlType }Nullable(List<$dartType ?>? v) => v?.map((e) => fromDart${dartType }NullableToGraphQL${graphQlType }Nullable(e)).toList();\n\n ' ,
106+ 'List<String?>? fromDartListNullable${dartType }NullableToGraphQLListNullable${graphQlType }Nullable(List<$dartType ?>? v) => v?.map((e) => fromDart${dartType }NullableToGraphQL${graphQlType }Nullable(e)).toList();\n ' ,
107107 );
108108
109- buffer.write (
109+ buffer.writeln (
110110 DartFormatter (fixes: [StyleFix .singleCascadeStatements]).format (
111111 code.toString (),
112112 ),
You can’t perform that action at this time.
0 commit comments