TalsecException.fromPlatformException constructor

TalsecException.fromPlatformException(
  1. PlatformException exception
)

Constructs an instance of TalsecException from a PlatformException.

Implementation

TalsecException.fromPlatformException(PlatformException exception)
    : this(
        message: exception.message,
        stackTrace: exception.stacktrace,
      );