Skip to content

Commit

Permalink
fix: remove unnessesary toString for Serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
Kraigo committed Feb 13, 2023
1 parent 8149bd1 commit d2c076d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/core/service_helper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ class ServiceHelper implements Service {
} else if (value is Serializable) {
return MapEntry(
key,
value.value.toString(),
value.value,
);
}

Expand Down

0 comments on commit d2c076d

Please sign in to comment.