flutter_chat_types 2.0.6 copy "flutter_chat_types: ^2.0.6" to clipboard
flutter_chat_types: ^2.0.6 copied to clipboard

outdated

Utility library for the flutter_chat_ui and flutter_firebase_chat_core libraries which contains shared type declarations.

example/main.dart

import 'package:flutter_chat_types/flutter_chat_types.dart' show TextMessage;

void main() {
  const message = TextMessage(authorId: 'authorId', id: 'id', text: 'text');
  print(message.toJson());
  final json = {'authorId': 'authorId', 'id': 'id', 'text': 'text'};
  print(TextMessage.fromJson(json).toJson());
}
39
likes
0
pub points
97%
popularity

Publisher

verified publisherflyer.chat

Utility library for the flutter_chat_ui and flutter_firebase_chat_core libraries which contains shared type declarations.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

meta

More

Packages that depend on flutter_chat_types