ItemGroup<TItem extends Item> constructor

ItemGroup<TItem extends Item>(
  1. String? groupIndex,
  2. List<TItem>? items
)
Initializes a new instance of the Index of the group. The items.

Implementation

ItemGroup(String? groupIndex, List<TItem>? items) {
  this.GroupIndex = groupIndex;
  this.Items = items;
}