Sample code for 30+ languages & platforms
Dart

Example: Http.GenTimeStamp method

Demonstrates the GenTimeStamp method.

Chilkat Dart Downloads

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

void main() {
  final http = CkHttp();

  // Return current date/time in the following format: Day, DD Mon YYYY HH:MM:SS GMT
  final timestamp = http.genTimeStamp();
  print(timestamp);

  // Sample Output:
  // Thu, 21 Aug 2025 11:17:31 GMT
}