AiService constructor

AiService()

Implementation

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