encode function

String encode(
  1. dynamic value, {
  2. Map<String, dynamic>? options,
})

Encodes a value to TOON format.

Currently not implemented.

Implementation

String encode(dynamic value, {Map<String, dynamic>? options}) {
  throw UnimplementedError('TOON encoding is not yet implemented');
}