isSameListAs method

bool isSameListAs(
  1. DeltaInsertOp op
)

Implementation

bool isSameListAs(DeltaInsertOp op) {
  return op.attributes.list != null && (attributes.list == op.attributes.list || (op.isACheckList() && isACheckList()));
}