Index: lib/html/src/CloseEventWrappingImplementation.dart |
diff --git a/lib/html/src/CloseEventWrappingImplementation.dart b/lib/html/src/CloseEventWrappingImplementation.dart |
index 061aa02a877ffaff789cf21750570b8a8eb22988..7e40277151114c1d465e8886a4ba447d58f9f791 100644 |
--- a/lib/html/src/CloseEventWrappingImplementation.dart |
+++ b/lib/html/src/CloseEventWrappingImplementation.dart |
@@ -12,9 +12,9 @@ class CloseEventWrappingImplementation extends EventWrappingImplementation imple |
return LevelDom.wrapCloseEvent(e); |
} |
- int get code() => _ptr.code; |
+ int get code => _ptr.code; |
- String get reason() => _ptr.reason; |
+ String get reason => _ptr.reason; |
- bool get wasClean() => _ptr.wasClean; |
+ bool get wasClean => _ptr.wasClean; |
} |