Any constructor

Any({
  1. String? typeUrl,
  2. List<int>? value,
})

Implementation

factory Any({
  $core.String? typeUrl,
  $core.List<$core.int>? value,
}) {
  final $result = create();
  if (typeUrl != null) {
    $result.typeUrl = typeUrl;
  }
  if (value != null) {
    $result.value = value;
  }
  return $result;
}