## `json5` should have the same API as in `dart:convert` How to move from `json` to `json5`? - option 1: search and replace: - jsonEncode => json5Encode - option 2: redefine the method - jsonEncode = json5Encode - jsonDecode = json5Decode
json5should have the same API as indart:convertHow to move from
jsontojson5?