useEmulator method

Future<void> useEmulator(
  1. String host,
  2. int port
)

Changes this instance to point to an Auth emulator running locally.

Set the host and port of the local emulator, such as "http://localhost" with port 9099

Note: Must be called immediately, prior to accessing auth methods. Do not use with production credentials as emulator traffic is not encrypted.

Implementation

Future<void> useEmulator(String host, int port) {
  throw UnimplementedError('useEmulator() is not implemented');
}