NativeException constructor

const NativeException({
  1. required NativeExceptionType type,
  2. required PlatformException platformException,
  3. required StackTrace stackTrace,
})

Implementation

const NativeException({
  required this.type,
  required this.platformException,
  required this.stackTrace,
});