Sample code for 30+ languages & platforms
Dart

Create JSON Array of Strings

See more JSON Examples

Demonstrates how to create a JSON array of strings.

Chilkat Dart Downloads

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

void main() {
  // The goal of this example is to produce this:

  // [
  //   "tag1",
  //   "tag2",
  //   "tag3"
  // ]

  final jarr = CkJsonArray();
  jarr.addStringAt(-1, 'tag1');
  jarr.addStringAt(-1, 'tag2');
  jarr.addStringAt(-1, 'tag3');

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