JSON constructor

JSON(
  1. dynamic obj
)

Only support JSON types object.

Implementation

JSON(dynamic obj) {
  value = obj;
}