EchatFMModel constructor
EchatFMModel({})
Implementation
factory EchatFMModel({
required String msgType,
String? content,
String? picUrl,
String? thumbUrl,
String? fileUrl,
String? fileNam,
String? fileSize,
}) {
return EchatFMModel._(
msgType: msgType,
content: content,
picUrl: picUrl,
thumbUrl: thumbUrl,
fileUrl: fileUrl,
fileNam: fileNam,
fileSize: fileSize,
);
}