TestAny constructor

TestAny({
  1. int? int32Value,
  2. Any? anyValue,
  3. Iterable<Any>? repeatedAnyValue,
  4. String? text,
})

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;
}