removeAdmin method

Future<HttpsCallableResult> removeAdmin(
  1. String email
)

Removes an admin role from the user associated with email.

Implementation

Future<HttpsCallableResult> removeAdmin(String email) async {
  final removeAdminRole = instance.httpsCallable('removeAdminRole');
  return removeAdminRole({"email": email});
}