HelpItem constructor

HelpItem({
  1. Color color = Colors.white,
  2. String? text,
  3. Offset? arrowPoint,
  4. Offset? endPoint,
})

构造函数

@param color 提示项颜色,默认白色 @param text 显示的文字内容 @param arrowPoint 箭头尖端的坐标位置 @param endPoint 文本终点的坐标位置

Implementation

HelpItem(
    {this.color = Colors.white, this.text, this.arrowPoint, this.endPoint});