Sample code for 30+ languages & platforms
Dart

Example: Rest.AddHeader method

Demonstrates the AddHeader method.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  final rest = CkRest();

  rest.addHeader('User-Agent', 'MyApplication/1.0');

  // ...
  // ...
  // ...
}