BinaryEngine constructor

BinaryEngine({
  1. required Logger logger,
  2. Map<String, String>? headers,
  3. required String executable,
  4. required String schema,
  5. required Map<String, String> datasources,
})

Create a new instance of BinaryEngine.

Implementation

BinaryEngine({
  required super.logger,
  super.headers,
  required this.executable,
  required this.schema,
  required this.datasources,
}) : super(endpoint: Uri.base);