jsonDecode top-level property

Object? Function(String?) jsonDecode
getter/setter pair

Implementation

Object? Function(String?) jsonDecode = (String? buf) {
  return conv.json.decode(buf!);
};