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