FLDyTextSpanUnitModel constructor

FLDyTextSpanUnitModel({
  1. String? uniqueId,
  2. List<FLDyTextSpanUnitModel>? children,
  3. String? text,
  4. FLDyUnitTextStyle? textStyle,
  5. FLDyGestureRecognizer? gesture,
  6. String? semanticsLabel,
})

Implementation

FLDyTextSpanUnitModel(
    {String? uniqueId,
    List<FLDyTextSpanUnitModel>? children,
    this.text,
    this.textStyle,
    this.gesture,
    this.semanticsLabel})
    : super(
        uniqueId: uniqueId,
        children: children,
      );