Bump the version.
diff --git a/CHANGELOG.md b/CHANGELOG.md
index feb1001..cb13d7b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 2.0.2
+
+* Fix all strong-mode warnings.
+
 ## 2.0.1
 
 * Fix a race condition in which a `StateError` could be top-leveled if
diff --git a/lib/src/parameters.dart b/lib/src/parameters.dart
index 1d2f86f..c6c653b 100644
--- a/lib/src/parameters.dart
+++ b/lib/src/parameters.dart
@@ -26,8 +26,8 @@
   ///
   /// If this is accessed for a [Parameter] that was not passed, the request
   /// will be automatically rejected. To avoid this, use [Parameter.valueOr].
-  final _value;
   get value => _value;
+  final _value;
 
   Parameters(this.method, this._value);
 
diff --git a/pubspec.yaml b/pubspec.yaml
index 8cb0dc8..01cb528 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: json_rpc_2
-version: 2.0.1
+version: 2.0.2
 author: Dart Team <misc@dartlang.org>
 description: An implementation of the JSON-RPC 2.0 spec.
 homepage: http://github.com/dart-lang/json_rpc_2