TextNodeV0.empty constructor

TextNodeV0.empty({
  1. Attributes? attributes,
})

Implementation

TextNodeV0.empty({Attributes? attributes})
    : _delta = Delta(operations: [TextInsert('')]),
      super(
        type: 'text',
        attributes: attributes ?? {},
      );