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}); }