setup2FA method

Future<String> setup2FA()

Sets up 2FA for the user.

Implementation

Future<String> setup2FA() async {
  final result = await _postMessage('setup2FA');
  return result['uri'];
}