setupWithCode method

Future<MoveAuthResult> setupWithCode(
  1. String authCode,
  2. MoveConfig moveConfig,
  3. MoveOptions? options
)

The SDK will setup and authenticate a user. authCode Auth code to setup with.. Services in moveConfig must be enabled in the MOVE dashboard.

Implementation

Future<MoveAuthResult> setupWithCode(
  String authCode,
  MoveConfig moveConfig,
  MoveOptions? options,
) {
  throw UnimplementedError('setup has not been implemented.');
}