You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fluffychat/lib/pangea/models/textChangeModel.dart

12 lines
254 B
Dart

import '../enum/direction.dart';
import '../enum/edit_type.dart';
class TextChangeModel {
EditType? editType;
EditDirection? editDirection;
String? text;
toJson() =>
{'editType': editType, 'editDirection': editDirection, 'text': text};
}