Mark constructor

Mark({
  1. required Offset position,
  2. Offset? endPosition,
  3. required int type,
  4. bool isFocus = false,
  5. List<String>? imagePaths,
  6. List<String>? imageLinks,
  7. bool isNew = false,
})

Implementation

Mark({
  required this.position,
  this.endPosition,
  required this.type,
  this.isFocus = false,
  this.imagePaths,
  this.imageLinks,
  this.isNew = false,
});