FalseStartSettings constructor
FalseStartSettings({
- FalseStartBehaviour? behaviour,
- 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;
}