MirrorId constructor

MirrorId({
  1. Any? value,
  2. String? typeUrl,
})

Implementation

factory MirrorId({
  $5.Any? value,
  $core.String? typeUrl,
}) {
  final _result = create();
  if (value != null) {
    _result.value = value;
  }
  if (typeUrl != null) {
    _result.typeUrl = typeUrl;
  }
  return _result;
}