decode function

dynamic decode(
  1. String input, {
  2. Map<String, dynamic>? options,
})

Decodes a TOON-formatted string to a Dart value.

Currently not implemented.

Implementation

dynamic decode(String input, {Map<String, dynamic>? options}) {
  throw UnimplementedError('TOON decoding is not yet implemented');
}