AudioParamDescriptor constructor
AudioParamDescriptor({
- required String name,
- double? defaultValue,
- double? minValue,
- double? maxValue,
- AutomationRate? automationRate,
Implementation
factory AudioParamDescriptor(
{required String name,
double? defaultValue,
double? minValue,
double? maxValue,
AutomationRate? automationRate}) =>
AudioParamDescriptor._(
name: name,
defaultValue: defaultValue ?? 0,
minValue: minValue ?? -3.4028235e38,
maxValue: maxValue ?? 3.4028235e38,
automationRate: automationRate?.value ?? AutomationRate.aRate.value);