Index: runtime/bin/http_impl.dart |
diff --git a/runtime/bin/http_impl.dart b/runtime/bin/http_impl.dart |
index 31c3fac0375ec7af110ad3f5838bd8f7fec0fc9b..ecebe4c243e7c33245022dbc15be1afa23a59d52 100644 |
--- a/runtime/bin/http_impl.dart |
+++ b/runtime/bin/http_impl.dart |
@@ -427,8 +427,8 @@ class _HeaderValue implements HeaderValue { |
class _ContentType extends _HeaderValue implements ContentType { |
- _ContentType([String primaryType = "", String subType = ""]) |
- : _primaryType = primaryType, _subType = subType; |
+ _ContentType(String primaryType, String subType) |
+ : _primaryType = primaryType, _subType = subType, super(""); |
_ContentType.fromString(String value) : super.fromString(value); |