Add a specific type to the map method in _getArguments  (#22)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index ab380fb..28fda89 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+### 2.0.8
+
+* Fixed method getArguments to qualify the map method with the specific
+  String type
+
 ### 2.0.7
 
 * Remove `set exitCode` instances
diff --git a/lib/src/interface/local_process_manager.dart b/lib/src/interface/local_process_manager.dart
index 7db7298..e840316 100644
--- a/lib/src/interface/local_process_manager.dart
+++ b/lib/src/interface/local_process_manager.dart
@@ -116,4 +116,9 @@
 }
 
 List<String> _getArguments(List<dynamic> command) =>
-    command.skip(1).map((dynamic element) => element.toString()).toList();
+    // Adding a specific type to map in order to workaround dart issue
+    // https://github.com/dart-lang/sdk/issues/32414
+    command
+        .skip(1)
+        .map<String>((dynamic element) => element.toString())
+        .toList();
diff --git a/pubspec.yaml b/pubspec.yaml
index cd2d2a6..41ad540 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: process
-version: 2.0.7
+version: 2.0.8
 authors:
 - Todd Volkert <tvolkert@google.com>
 - Michael Goderbauer <goderbauer@google.com>