NativeBridgeException constructor

const NativeBridgeException({
  1. required NativeCommand command,
  2. required String message,
  3. String? code,
  4. Object? originalException,
})

Implementation

const NativeBridgeException({
  required this.command,
  required this.message,
  this.code,
  this.originalException,
});