Skip to content

Instantly share code, notes, and snippets.

@boeledi
Last active March 27, 2023 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boeledi/19e2746869d8d5dd74ec502f9ea10f3a to your computer and use it in GitHub Desktop.
Save boeledi/19e2746869d8d5dd74ec502f9ea10f3a to your computer and use it in GitHub Desktop.
Stream<bool> get registerValid => Rx.combineLatest3<String, String, String, bool>(
email,
password,
confirmPassword,
(e, p, c) => (0 == p.compareTo(c))
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment