toNativeConfig method

NativeConstructorConfig toNativeConfig()

Converts to the internal Pigeon config used for native platform communication

Implementation

NativeConstructorConfig toNativeConfig() {
  return NativeConstructorConfig(
    debug: debug,
    enableCustomLogging: logger != null,
    enableExceptionCapture: exceptionCapture != null,
    alsoNativeLogs: alsoNativeLogs,
  );
}