buildJSON method

dynamic buildJSON(
  1. dynamic parent
)

Implementation

dynamic buildJSON(dynamic parent) {
  if (listMode) {
    return _buildJSONList(parent);
  } else {
    return _buildJSONObject(parent);
  }
}