getCommand method

String getCommand(
  1. Map<String, dynamic> context
)

Returns command from Azure Function context. This method can be overloaded in child classes

  • context - Azure Function context Returns command from context

Implementation

String getCommand(Map<String, dynamic> context) {
  return AzureFunctionContextHelper.getCommand(context);
}