Skip to content

Commit

Permalink
dart format
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgefspereira committed Jun 15, 2023
1 parent 1104412 commit 1857c32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/platform/plaid_js_map.dart
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ class WebConfiguration {
/// A workaround to converting an object from JS to a Dart Map.
Map jsToMap(jsObject) {
if (jsObject == null) {
return Map();
return Map();
}

return new Map.fromIterable(
_getKeysOfObject(jsObject),
value: (key) => getProperty(jsObject, key),
Expand Down

0 comments on commit 1857c32

Please sign in to comment.