clearIdentity method

Future<void> clearIdentity()

Implementation

Future<void> clearIdentity() async {
  if (this._identity != null) {
    await OpenIdIdentity.clear();
    this._identity = null;
  }
}