Attribute.fromIntList constructor

Attribute.fromIntList(
  1. String? key,
  2. List<int> value
)

Create an Attribute from a list of integer values.

Implementation

Attribute.fromIntList(this.key, List<int> this.value) {
  if (key == null) {
    throw ArgumentError("key can't be null.");
  }
}