Attribute constructor

const Attribute({
  1. required String traitType,
  2. required dynamic value,
})

Implementation

const Attribute({
  required this.traitType,
  required this.value,
});