fromMap static method

InvalidUserPoolConfigurationException fromMap(
  1. Map map
)
override

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

Implementation

static InvalidUserPoolConfigurationException fromMap(Map map) =>
    InvalidUserPoolConfigurationException(
      message: map['message'] as String,
      recoverySuggestion: map['recoverySuggestion'] as String?,
      underlyingException: map['underlyingException'] as String?,
    );