role property

String? get role

Implementation

String? get role => switch (this) {
  TextNode(:final role) => role,
  ImageNode(:final role) => role,
  PathNode(:final role) => role,
  IconNode(:final role) => role,
  GroupNode() => null,
};