signOut method

Future<Response<void>> signOut([
  1. Provider? provider
])

Signs out the user from the specified provider or all providers if none is specified.

Implementation

Future<Response<void>> signOut([Provider? provider]) {
  throw UnimplementedError(
    "Method signOut() is not yet implemented.",
  );
}