FriendService constructor

FriendService()

Implementation

factory FriendService() {
  if (_singleton == null) {
    _singleton = FriendService._();
  }
  return _singleton!;
}