MoveSegment constructor

MoveSegment({
  1. required Offset end,
  2. String? tag,
})

Creates a move segment.

Implementation

MoveSegment({
  required this.end,
  String? tag,
}) : super(
        tag: tag,
      );