Rope constructor

Rope([
  1. String initialText = ''
])

Implementation

Rope([String initialText = ''])
  : _rope = RopeBridge.create(initialText: initialText);