17 lines
304 B
Dart
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});
|
|
}
|