Sample code for 30+ languages & platforms
Dart

Create JSON Document

See more JSON Examples

Sample code to create the following JSON document:
{
  "Title": "Pan's Labyrinth",
  "Director": "Guillermo del Toro",
  "Original_Title": "El laberinto del fauno",
  "Year_Released": 2006
}

Chilkat Dart Downloads

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

void main() {
  final json = CkJsonObject();

  // The only reason for failure in the following lines of code would be an out-of-memory condition..

  // An index value of -1 is used to append at the end.
  json.addStringAt(-1, 'Title', 'Pan\'s Labyrinth');
  json.addStringAt(-1, 'Director', 'Guillermo del Toro');
  json.addStringAt(-1, 'Original_Title', 'El laberinto del fauno');
  json.addIntAt(-1, 'Year_Released', 2006);

  json.emitCompact = false;
  print(json.emit());
}