telegraph 0.0.3 copy "telegraph: ^0.0.3" to clipboard
telegraph: ^0.0.3 copied to clipboard

A Library Telegraph.

example/example.dart

// ignore_for_file: depend_on_referenced_packages

import 'dart:io';
import 'package:telegraph/telegraph.dart';

void main(List<String> arguments) async {
  Telegraph telegraph = Telegraph();

  var res = await telegraph.createAccount(
    short_name: "salpsalpsplas",
    author_name: "Sasasasa",
  );

  print(res);

  exit(0);
}