SvgDebugNodeSummary constructor

const SvgDebugNodeSummary({
  1. required String nodeId,
  2. required String tagName,
  3. required String? svgId,
  4. required List<String> classes,
  5. required int childCount,
  6. required bool animated,
})

Implementation

const SvgDebugNodeSummary({
  required this.nodeId,
  required this.tagName,
  required this.svgId,
  required this.classes,
  required this.childCount,
  required this.animated,
});