makeBody method

  1. @override
String makeBody(
  1. dynamic x
)
override

Implementation

@override
String makeBody(x) {
  _log.info(x);
  if (type != null) {
    return super.makeBody(god.serializeObject(x));
  }

  return super.makeBody(x);
}