Support params in StepInto and StepOver
diff --git a/changelog.md b/changelog.md
index bbc1c03..f213c42 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,9 @@
 # webkit_inspection_protocol.dart
 
+## 0.7.4
+- Support `params` to `stepInto` and `stepOver`. 
+
+
 ## 0.7.3
 - Fix a type issue with `GlobalObjectClearedEvent`s 
 
diff --git a/lib/src/debugger.dart b/lib/src/debugger.dart
index e9abe65..a98f2c9 100644
--- a/lib/src/debugger.dart
+++ b/lib/src/debugger.dart
@@ -32,11 +32,13 @@
 
   Future<WipResponse> resume() => sendCommand('Debugger.resume');
 
-  Future<WipResponse> stepInto() => sendCommand('Debugger.stepInto');
+  Future<WipResponse> stepInto({Map<String, dynamic> params}) =>
+      sendCommand('Debugger.stepInto', params: params);
 
   Future<WipResponse> stepOut() => sendCommand('Debugger.stepOut');
 
-  Future<WipResponse> stepOver() => sendCommand('Debugger.stepOver');
+  Future<WipResponse> stepOver({Map<String, dynamic> params}) =>
+      sendCommand('Debugger.stepOver', params: params);
 
   Future<WipResponse> setPauseOnExceptions(PauseState state) {
     return sendCommand('Debugger.setPauseOnExceptions',
diff --git a/pubspec.yaml b/pubspec.yaml
index 5a601ca..99fa1a9 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: webkit_inspection_protocol
-version: 0.7.3
+version: 0.7.4
 description: A client for the Chrome DevTools Protocol (previously called the Webkit Inspection Protocol).
 homepage: https://github.com/google/webkit_inspection_protocol.dart