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