attributesNames property

Iterable<String> get attributesNames

Returns the attributes names with values.

Implementation

Iterable<String> get attributesNames {
  final attributes = _attributes;
  return attributes != null && attributes.isNotEmpty ? attributes.keys : [];
}