ContainerSpan constructor

ContainerSpan({
  1. AnchorKey? key,
  2. Widget? child,
  3. List<InlineSpan>? children,
  4. required Style style,
  5. required RenderContext newContext,
  6. bool shrinkWrap = false,
})

Implementation

ContainerSpan({
  this.key,
  this.child,
  this.children,
  required this.style,
  required this.newContext,
  this.shrinkWrap = false,
}): super(key: key);