TestAny constructor
Implementation
factory TestAny({
$core.int? int32Value,
$28.Any? anyValue,
$core.Iterable<$28.Any>? repeatedAnyValue,
$core.String? text,
}) {
final $result = create();
if (int32Value != null) {
$result.int32Value = int32Value;
}
if (anyValue != null) {
$result.anyValue = anyValue;
}
if (repeatedAnyValue != null) {
$result.repeatedAnyValue.addAll(repeatedAnyValue);
}
if (text != null) {
$result.text = text;
}
return $result;
}