toTypedJsonObjectLite static method

JsonObjectLite toTypedJsonObjectLite(
  1. JsonObjectLite src,
  2. JsonObjectLite dest
)

Typed JsonObjectLite

Implementation

static JsonObjectLite<dynamic> toTypedJsonObjectLite(
    JsonObjectLite<dynamic> src, JsonObjectLite<dynamic> dest) {
  dest._objectData = src._objectData;
  if (src.isImmutable!) {
    dest.isImmutable = true;
  }
  return dest;
}