CommandableAzureFunction constructor

CommandableAzureFunction(
  1. String name,
  2. [String? description]
)

Creates a new instance of this Azure function.

  • name (optional) a container name (accessible via ContextInfo)
  • description (optional) a container description (accessible via ContextInfo)

Implementation

CommandableAzureFunction(String name, [String? description])
    : super(name, description) {
  dependencyResolver.put('service', 'none');
}