Point.build constructor

Point.build(
  1. {required PointContainer item,
  2. required Function onChange,
  3. Key? key}
)

A named constructor that is used to create a new instance of the Go class.

Implementation

Point.build({
  required this.item,
  required super.onChange,
  super.key,
});