BatchUpdateEntityTypesResponse constructor

BatchUpdateEntityTypesResponse({
  1. Iterable<EntityType>? entityTypes,
})

Implementation

factory BatchUpdateEntityTypesResponse({
  $core.Iterable<EntityType>? entityTypes,
}) {
  final _result = create();
  if (entityTypes != null) {
    _result.entityTypes.addAll(entityTypes);
  }
  return _result;
}