Jonny Borges
Committed by GitHub

Merge pull request #963 from emanuelmutschlechner/typo-rxbool-isfalse

Change RxBool getter .isfalse to .isFalse
@@ -204,7 +204,7 @@ class RxBool extends _RxImpl<bool> { @@ -204,7 +204,7 @@ class RxBool extends _RxImpl<bool> {
204 204
205 bool get isTrue => value; 205 bool get isTrue => value;
206 206
207 - bool get isfalse => !isTrue; 207 + bool get isFalse => !isTrue;
208 208
209 bool operator &(bool other) => other && value; 209 bool operator &(bool other) => other && value;
210 210