FFApiParameter constructor
FFApiParameter({
- FFIdentifier? identifier,
- String? specifiedValue,
- FFIdentifier? variableIdentifier,
- FFBaseDataType? type,
Implementation
factory FFApiParameter({
FFIdentifier? identifier,
$core.String? specifiedValue,
FFIdentifier? variableIdentifier,
FFBaseDataType? type,
}) {
final result = create();
if (identifier != null) result.identifier = identifier;
if (specifiedValue != null) result.specifiedValue = specifiedValue;
if (variableIdentifier != null)
result.variableIdentifier = variableIdentifier;
if (type != null) result.type = type;
return result;
}