ExternalLibrary.process constructor

ExternalLibrary.process(
  1. {String debugInfo = ''}
)

The code is used only internally and is not a public API. The comment exists mainly to satisfy the linter.

Implementation

factory ExternalLibrary.process({String debugInfo = ''}) => ExternalLibrary(
      ffiDynamicLibrary: ffi.DynamicLibrary.process(),
      debugInfo: 'by process()$debugInfo',
    );