AttributedText constructor

AttributedText({
  1. required int start,
  2. required int end,
  3. String? underlyingText,
  4. TextStyle? style,
  5. dynamic onTap(
    1. String
    )?,
  6. EdgeInsetsGeometry? padding,
  7. Color? backgroundColor,
  8. double? borderRadius,
  9. Border? border,
  10. bool isBlockElement = false,
})

Implementation

AttributedText({
  required this.start,
  required this.end,
  this.underlyingText,
  this.style,
  this.onTap,
  this.padding,
  this.backgroundColor,
  this.borderRadius,
  this.border,
  this.isBlockElement = false,
});