mirror of https://github.com/AMT-Cheif/drift.git
Fix analysis errors
This commit is contained in:
parent
06af930941
commit
e874b78698
|
@ -96,7 +96,7 @@ abstract class NullAwareTypeConverter<D, S extends Object>
|
||||||
/// null values. Further, `null` is mapped to `null` in both directions (from
|
/// null values. Further, `null` is mapped to `null` in both directions (from
|
||||||
/// Dart to SQL and vice-versa).
|
/// Dart to SQL and vice-versa).
|
||||||
const factory NullAwareTypeConverter.wrap(TypeConverter<D, S> inner) =
|
const factory NullAwareTypeConverter.wrap(TypeConverter<D, S> inner) =
|
||||||
_NullWrappingTypeConverter;
|
_NullWrappingTypeConverter<D, S>;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
D? mapToDart(S? fromDb) {
|
D? mapToDart(S? fromDb) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import 'package:test/test.dart';
|
|
||||||
import 'package:drift/drift.dart';
|
import 'package:drift/drift.dart';
|
||||||
|
import 'package:test/test.dart';
|
||||||
|
|
||||||
import '../../generated/converter.dart';
|
import '../../generated/converter.dart';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue