chat_application 0.0.1 copy "chat_application: ^0.0.1" to clipboard
chat_application: ^0.0.1 copied to clipboard

A chat application package that uses shared preferences to store user credentials

chat_application #

A chat application package that uses shared preferences to store user credentials.

Usage #

import 'package:chat_application/chat_application.dart';

void main() {
  final chatApp = ChatApplication(
    userId: '123',
    token: 'token123',
    firebaseToken: 'firebaseToken123',
  );
  
  chatApp.fetchChats();
}