DesignAzureIds_Id constructor

DesignAzureIds_Id({
  1. int? azureId,
  2. Iterable<int>? entryIds,
  3. String? path,
})

Implementation

factory DesignAzureIds_Id({
  $core.int? azureId,
  $core.Iterable<$core.int>? entryIds,
  $core.String? path,
}) {
  final _result = create();
  if (azureId != null) {
    _result.azureId = azureId;
  }
  if (entryIds != null) {
    _result.entryIds.addAll(entryIds);
  }
  if (path != null) {
    _result.path = path;
  }
  return _result;
}