hasHigherIndentThan method

bool hasHigherIndentThan(
  1. DeltaInsertOp op
)

Implementation

bool hasHigherIndentThan(DeltaInsertOp op) {
  return (attributes.indent ?? 0) > (op.attributes.indent ?? 0);
}