TealeafException constructor

TealeafException(
  1. PlatformException pe, {
  2. String? msg,
})

Implementation

TealeafException(PlatformException pe, {this.msg})
    : code = pe.code,
      nativeStacktrace = pe.stacktrace,
      nativeMsg = pe.message,
      nativeDetails = pe.details?.toString();