instance property

ChatService get instance

Singleton instance

Implementation

static ChatService get instance {
  _instance ??= ChatService._();
  return _instance!;
}