SentryAttribute.boolArray constructor

SentryAttribute.boolArray(
  1. List<bool> value
)

Implementation

factory SentryAttribute.boolArray(List<bool> value) {
  return SentryAttribute(List<bool>.unmodifiable(value), 'array');
}