defineEditButtonPosition method

void defineEditButtonPosition({
  1. required dynamic top,
  2. dynamic left,
  3. dynamic bottom,
  4. dynamic right,
})

You can change the position of the button "Edit" / "OK". By default, bottom: 10, right: 15.

Implementation

void defineEditButtonPosition({
  required top,
  left,
  bottom,
  right,
}) {
  this.editButtonPosTop = top;
  this.editButtonPosLeft = left;
  this.editButtonPosBottom = bottom;
  this.editButtonPosRight = right;
}