getAttributes property

Map<String, dynamic> getAttributes
inherited

It returns the node's attributes It merges the default attributes with the current attributes

Implementation

Map<String, dynamic> get getAttributes => {
      ..._globalDefaultAttributes,
      ..._defaultAttributes,
      ..._attributes,
    };