DropCapText constructor
DropCapText({
- Key? key,
- required String data,
- bool? selectable,
- DropCapMode? mode,
- TextStyle? style,
- TextStyle? dropCapStyle,
- TextAlign textAlign = TextAlign.start,
- DropCap? dropCap,
- EdgeInsets? dropCapPadding = EdgeInsets.zero,
- Offset indentation = Offset.zero,
- int? dropCapChars = 1,
- bool? forceNoDescent = false,
- bool? parseInlineMarkdown = false,
- TextDirection textDirection = TextDirection.ltr,
- TextOverflow? overflow,
- int? maxLines,
- DropCapPosition? dropCapPosition,
Implementation
DropCapText(
{Key? key,
required this.data,
this.selectable,
this.mode,
this.style,
this.dropCapStyle,
this.textAlign = TextAlign.start,
this.dropCap,
this.dropCapPadding = EdgeInsets.zero,
this.indentation = Offset.zero,
this.dropCapChars = 1,
this.forceNoDescent = false,
this.parseInlineMarkdown = false,
this.textDirection = TextDirection.ltr,
this.overflow,
this.maxLines,
this.dropCapPosition})
: super(key: key);