jsonStringify method

String? jsonStringify({
  1. required CObject data,
})

Will encode the JSON CObject into a string or null if the encode could not be achieved.

Implementation

String? jsonStringify({required CObject data}) {
  return data.stringify();
}