checkIfUserExists method

Future<bool> checkIfUserExists(
  1. String email
)

Determines if a user exists with the given email address.

Implementation

Future<bool> checkIfUserExists(String email) async {
  return await _postMessage('checkIfUserExists', [email]);
}