TextView constructor

const TextView({
  1. Key? key,
  2. double? left,
  3. double? top,
  4. Function? ontap,
  5. dynamic onpanupdate(
    1. DragUpdateDetails
    )?,
  6. Map? mapJson,
})

Implementation

const TextView({
  Key? key,
  this.left,
  this.top,
  this.ontap,
  this.onpanupdate,
  this.mapJson,
}) : super(key: key);