FFStopSound constructor

FFStopSound({
  1. String? playSoundName,
})

Implementation

factory FFStopSound({
  $core.String? playSoundName,
}) {
  final result = create();
  if (playSoundName != null) result.playSoundName = playSoundName;
  return result;
}