TextCursor constructor

const TextCursor({
  1. Key? key,
  2. Color? color,
  3. Duration duration = const Duration(milliseconds: 500),
  4. bool resumed = false,
})

Implementation

const TextCursor({
  Key? key,
  this.color,
  this.duration = const Duration(milliseconds: 500),
  this.resumed = false,
}) : super(key: key);