jsonDecode static method

dynamic jsonDecode(
  1. String source
)

Implementation

static dynamic jsonDecode(String source) {
  final json = converter.json.decode(source);

  return json;
}