encodeObj static method
将对象值转换为JSON字符串
Converts object value to a JSON string.
Implementation
static String? encodeObj(dynamic value) {
return value == null ? null : json.encode(value);
}
将对象值转换为JSON字符串
Converts object value to a JSON string.
static String? encodeObj(dynamic value) {
return value == null ? null : json.encode(value);
}