getVerifyToken method

Future<void> getVerifyToken(
  1. void success(
    1. dynamic
    ),
  2. void error(
    1. dynamic
    )
)

Web only: gets a local-number verification token after authentication.

Implementation

Future<void> getVerifyToken(
  void Function(dynamic) success,
  void Function(dynamic) error,
) {
  throw UnimplementedError('getVerifyToken() has not been implemented.');
}