TextInkwellComponent constructor

const TextInkwellComponent({
  1. double? fontsize = 12,
  2. required String? text,
  3. required Color? color,
  4. bool isFullWidth = false,
  5. AlignmentGeometry alignmentGeometry = Alignment.centerRight,
  6. TextAlign? textAlign = TextAlign.left,
  7. dynamic onLongTap()?,
  8. required dynamic functionOnTap()?,
})

Implementation

const TextInkwellComponent(
    {this.fontsize = 12,
      required this.text,
      required this.color,
      this.isFullWidth = false,
      this.alignmentGeometry = Alignment.centerRight,
      this.textAlign = TextAlign.left,
      this.onLongTap,
      required this.functionOnTap})
    : super(key: null);