body method

MethodWithBody body(
  1. dynamic body
)

Implementation

MethodWithBody body(dynamic body) {
  if (body is List<int>) {
    _body = body;
  } else {
    _body = body?.toString();
  }
  return this;
}