toDelta method

Delta toDelta()

Return a Delta representation of the EasyTextList

Implementation

Delta toDelta() {
  final Delta delta = Delta();
  for (final EasyText text in this) {
    delta.push(text.toOperation());
  }
  return delta;
}