AttributeList constructor

AttributeList({
  1. required int total,
  2. required List attributes,
})

Implementation

AttributeList({
  required this.total,
  required this.attributes,
});