OpenIMCallbackReq constructor

OpenIMCallbackReq({
  1. String? command,
  2. String? body,
})

Implementation

factory OpenIMCallbackReq({
  $core.String? command,
  $core.String? body,
}) {
  final result = create();
  if (command != null) result.command = command;
  if (body != null) result.body = body;
  return result;
}