mirror of https://github.com/AMT-Cheif/drift.git
Fix formatting
This commit is contained in:
parent
9bb85dfe46
commit
d4ca27df58
|
@ -193,8 +193,9 @@ class GeneratedColumn<T extends Object> extends Column<T> {
|
|||
} else if (nullOk && value == null) {
|
||||
return const VerificationResult.success();
|
||||
} else {
|
||||
// ignore: null_check_on_nullable_type_parameter
|
||||
return additionalChecks?.call(value!, meta) ?? const VerificationResult.success();
|
||||
// ignore: null_check_on_nullable_type_parameter
|
||||
return additionalChecks?.call(value!, meta) ??
|
||||
const VerificationResult.success();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue