GTFInputBoxCursor constructor

const GTFInputBoxCursor({
  1. Key? key,
  2. double? width = 2,
  3. double? topIndent,
  4. double? bottomIndent,
  5. Color? color = GTFColor.grey6,
})

Implementation

const GTFInputBoxCursor({
  Key? key,
  this.width = 2,
  this.topIndent,
  this.bottomIndent,
  this.color = GTFColor.grey6,
}) : super(key: key);