FFAudio constructor
FFAudio({
- String? legacyPath,
- FFAudio_FFAudioType? type,
- String? legacyTitle,
- FFStringValue? pathValue,
- FFStringValue? titleValue,
Implementation
factory FFAudio({
$core.String? legacyPath,
FFAudio_FFAudioType? type,
$core.String? legacyTitle,
FFStringValue? pathValue,
FFStringValue? titleValue,
}) {
final result = create();
if (legacyPath != null) result.legacyPath = legacyPath;
if (type != null) result.type = type;
if (legacyTitle != null) result.legacyTitle = legacyTitle;
if (pathValue != null) result.pathValue = pathValue;
if (titleValue != null) result.titleValue = titleValue;
return result;
}