Skip to content

Commit

Permalink
Fix validation in extractRevenue method in plugins_appsflyer
Browse files Browse the repository at this point in the history
  • Loading branch information
oscb authored Dec 5, 2023
2 parents c9b7549 + 3b2fba2 commit d687327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/plugins/plugin_appsflyer/lib/utils.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
double? extractRevenue(String key, Map<String, dynamic> properties) {
if (!properties[key]) {
if (properties[key] == null) {
return null;
}

Expand Down

0 comments on commit d687327

Please sign in to comment.