registerCustomResponses static method

void registerCustomResponses(
  1. Map<String, CommandResponse Function(dynamic, String?, bool?)> builders
)

Allows application to register it's own custom responses.

Implementation

static void registerCustomResponses(
        Map<String, CommandResponse Function(dynamic, String?, bool?)>
            builders) =>
    _builders.addAll(builders);