fromMap static method

SignedOutException fromMap(
  1. Map<String, String> serializedException
)
override

Returns a new instance of this exception constructed from the serialized exception data.

Implementation

static SignedOutException fromMap(Map<String, String> serializedException) {
  return SignedOutException._private(
    AuthException.fromMap(serializedException),
  );
}