respond method

void respond(
  1. String userId,
  2. int reply
)
inherited

Responds to the user.

Implementation

void respond(String userId, int reply) {
  _bindings.Discord_Respond(
    userId.toNativeUtf8(),
    reply,
  );
}