Fix analysis errors

This commit is contained in:
Simon Binder 2022-06-23 00:13:53 +02:00
parent 06af930941
commit e874b78698
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
2 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ abstract class NullAwareTypeConverter<D, S extends Object>
/// null values. Further, `null` is mapped to `null` in both directions (from
/// Dart to SQL and vice-versa).
const factory NullAwareTypeConverter.wrap(TypeConverter<D, S> inner) =
_NullWrappingTypeConverter;
_NullWrappingTypeConverter<D, S>;
@override
D? mapToDart(S? fromDb) {

View File

@ -1,5 +1,5 @@
import 'package:test/test.dart';
import 'package:drift/drift.dart';
import 'package:test/test.dart';
import '../../generated/converter.dart';