Skip to content

Commit

Permalink
fix(firestore, web): explicitly set null value on Firestore data ob…
Browse files Browse the repository at this point in the history
…ject property value (#9599)
  • Loading branch information
russellwheatley committed Sep 28, 2022
1 parent cb6661b commit e61b603
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -67,6 +67,9 @@ dynamic jsify(
Object? Function(Object? object)? customJsify,
]) {
if (_isBasicType(dartObject)) {
if (dartObject == null) {
return null;
}
return dartObject;
}

Expand Down

0 comments on commit e61b603

Please sign in to comment.