sarufi 0.0.1
sarufi: ^0.0.1 copied to clipboard
A Dart SDK for interacting with sarufi.io
example/example.dart
import 'package:sarufi/sarufi.dart';
void main() async {
final bot = Sarufi(userName: "John Doe", passWord: "*****");
var chatbot = await bot.createBot(name: "My First Bot");
print(bot.toString());
print(chatbot);
// $ Sarufi(username: John Doe, password: *****)
// $ Bot(id: 11, name: My First Chatbot)
}