respond method

void respond({
  1. int to = 1,
  2. dynamic result = 1,
  3. int? id,
  4. void callback(
    1. dynamic
    )?,
})

Implementation

void respond({
  int to = 1,
  dynamic result = 1,
  int? id,
  void Function(dynamic)? callback,
}) {
  ZeroNetWSInterface.instance.respond(
    to: to,
    result: result,
    id: id,
    callback: callback,
  );
}