InterpreterOptions constructor

InterpreterOptions()

Implementation

factory InterpreterOptions() {
  final Pointer<TfLiteInterpreterOptions> options = TfLiteInterpreterOptionsCreate();
  checkArgument(options.address != nullptr.address, message: 'Unable to create InterpreterOptions.');
  return InterpreterOptions._(options);
}