TestAny constructor

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

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