fromMap static method

DeviceNotTrackedException fromMap(
  1. Map map
)
override

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

Implementation

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