TestAny constructor
Implementation
factory TestAny({
$core.int? int32Value,
$0.Any? anyValue,
$core.Iterable<$0.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;
}