12 lines
274 B
Dart
12 lines
274 B
Dart
// Project imports:
|
|
import '../enum/direction.dart';
|
|
import '../enum/edit_type.dart';
|
|
|
|
class TextChangeModel {
|
|
EditType? editType;
|
|
EditDirection? editDirection;
|
|
String? text;
|
|
|
|
toJson() =>
|
|
{'editType': editType, 'editDirection': editDirection, 'text': text};
|
|
}
|