FalseStartSettings constructor

FalseStartSettings({
  1. FalseStartBehaviour? behaviour,
  2. int? soundDuration,
})

Implementation

factory FalseStartSettings({
  FalseStartBehaviour? behaviour,
  $core.int? soundDuration,
}) {
  final $result = create();
  if (behaviour != null) {
    $result.behaviour = behaviour;
  }
  if (soundDuration != null) {
    $result.soundDuration = soundDuration;
  }
  return $result;
}