EditPointScreen constructor

const EditPointScreen({
  1. required Point<int> point,
  2. required void onChanged(
    1. Point<int> point
    ),
  3. String title = 'Edit Point',
  4. String editorTitle = 'Point',
  5. int defaultModifier = 1,
  6. Point<int>? minValue,
  7. Point<int>? maxValue,
  8. EditPointPoint initialEditPoint = EditPointPoint.x,
  9. Key? key,
})

Create an instance.

Implementation

const EditPointScreen({
  required this.point,
  required this.onChanged,
  this.title = 'Edit Point',
  this.editorTitle = 'Point',
  this.defaultModifier = 1,
  this.minValue,
  this.maxValue,
  this.initialEditPoint = EditPointPoint.x,
  super.key,
});