Route constructor

Route({
  1. required String routeKey,
  2. bool? apiGatewayManaged,
  3. bool? apiKeyRequired,
  4. List<String>? authorizationScopes,
  5. AuthorizationType? authorizationType,
  6. String? authorizerId,
  7. String? modelSelectionExpression,
  8. String? operationName,
  9. Map<String, String>? requestModels,
  10. Map<String, ParameterConstraints>? requestParameters,
  11. String? routeId,
  12. String? routeResponseSelectionExpression,
  13. String? target,
})

Implementation

Route({
  required this.routeKey,
  this.apiGatewayManaged,
  this.apiKeyRequired,
  this.authorizationScopes,
  this.authorizationType,
  this.authorizerId,
  this.modelSelectionExpression,
  this.operationName,
  this.requestModels,
  this.requestParameters,
  this.routeId,
  this.routeResponseSelectionExpression,
  this.target,
});