short_time_identification_enabled method Null safety

VideoWorkerParams short_time_identification_enabled(
  1. bool value
)

Set the flag enabling "short time identification".

Implementation

VideoWorkerParams short_time_identification_enabled(bool value) {
  _short_time_identification_enabled = value ? 1 : 0;
  return this;
}