TealeafException.create constructor

TealeafException.create({
  1. required int code,
  2. required String? msg,
  3. String? nativeMsg,
  4. String? nativeStacktrace,
  5. String? nativeDetails,
})

Implementation

TealeafException.create(
    {required int code,
    required this.msg,
    this.nativeMsg,
    this.nativeStacktrace,
    this.nativeDetails}) {
  this.code = _getCode(code);
}