VSInterfaceData constructor

VSInterfaceData({
  1. required String type,
  2. Widget interfaceIconBuilder(
    1. BuildContext context,
    2. GlobalKey<State<StatefulWidget>> anchor,
    3. VSInterfaceData data
    )?,
  3. String? title,
  4. String? toolTip,
})

Implementation

VSInterfaceData({
  required this.type,
  this.interfaceIconBuilder,
  String? title,
  this.toolTip,
}) : _title = title ?? "";