TextEditorEdit constructor
TextEditorEdit({})
Implementation
factory TextEditorEdit({
void Function(
_i2.Object,
_i2.String,
)? replace,
void Function(
_i3.Position,
_i2.String,
)? insert,
void Function(_i2.Object)? delete,
void Function(_i3.EndOfLine)? setEndOfLine,
}) =>
TextEditorEdit._(
replace: replace == null ? null : _i5.allowInterop(replace),
insert: insert == null ? null : _i5.allowInterop(insert),
delete: delete == null ? null : _i5.allowInterop(delete),
setEndOfLine:
setEndOfLine == null ? null : _i5.allowInterop(setEndOfLine),
);