ServerParamAnnotations constructor

ServerParamAnnotations({
  1. required ServerBodyAnnotation? body,
  2. required ServerQueryAnnotation? query,
  3. required ServerParamAnnotation? param,
  4. required bool dep,
  5. required bool data,
  6. required ServerHeaderAnnotation? header,
  7. required ServerCookieAnnotation? cookie,
  8. required ServerBindsAnnotation? binds,
  9. required ServerMimic? bind,
})

Implementation

ServerParamAnnotations({
  required this.body,
  required this.query,
  required this.param,
  required this.dep,
  required this.data,
  required this.header,
  required this.cookie,
  required this.binds,
  required this.bind,
});