setAccount method

Future<Map<String, dynamic>> setAccount(
  1. Map<String, dynamic> account
)

Update a given account.

After updating an account, it is strongly recommended to verify if the account is still logged in, using isLoggedIn.

Implementation

Future<Map<String, dynamic>> setAccount(Map<String, dynamic> account) {
  return GigyaFlutterPluginPlatform.instance.setAccount(account);
}