taafee-mobile/lib/features/chat/data_layer/model/reply.dart
2023-10-17 17:22:55 +03:00

17 lines
304 B
Dart

import 'package:flutter/material.dart';
class ReplyModel {
bool isPhoto;
bool isVoice;
int messageId;
String messageText;
ImageProvider? image;
ReplyModel(
{this.isPhoto = false,
this.isVoice = false,
this.messageId = 0,
this.messageText = '',
this.image});
}