clickup_dart 0.1.0 copy "clickup_dart: ^0.1.0" to clipboard
clickup_dart: ^0.1.0 copied to clipboard

An API wrapper for ClickUp for creating applications on top of the product.

example/clickup_dart_example.dart

import 'dart:convert';
import 'dart:io';

import 'package:clickup_dart/clickup_dart.dart';

void main() async {
  final token = "pk_testrandomtoken123";
  // Initialize with mock server for testing
  final clickUp = ClickUp(
      apiEndpoint: "https://a00fb6e0-339c-4201-972f-503b9932d17a.remockly.com")
    ..initialize(authToken: token);

  final attachment = await clickUp.attachments.createTaskAttachment(
      taskID: "8669e046h",
      useCustomTaskID: false,
      filePath: "./test/beksinski_sample.jpg");

  print(attachment);
}
0
likes
140
points
28
downloads

Publisher

verified publisherayazemre.com

Weekly Downloads

An API wrapper for ClickUp for creating applications on top of the product.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

http

More

Packages that depend on clickup_dart