flutter_chat_types 3.6.2 flutter_chat_types: ^3.6.2 copied to clipboard
Utility library for the flutter_chat_ui and flutter_firebase_chat_core libraries which contains shared type declarations.
import 'package:flutter_chat_types/flutter_chat_types.dart'
show TextMessage, User;
void main() {
const user = User(id: 'authorId');
const message = TextMessage(author: user, id: 'id', text: 'text');
// ignore: avoid_print
print(message.toJson());
final json = {
'author': {'id': 'authorId'},
'id': 'id',
'text': 'text',
};
// ignore: avoid_print
print(TextMessage.fromJson(json).toJson());
}