signOut method

Future<bool> signOut()

Signs out of the current ID.

The account SDK deletes the cached ID information.

Implementation

Future<bool> signOut() async {
  return await _c.invokeMethod(
    'signOut',
    <String, dynamic>{
      ..._params,
    },
  );
}